snipt/snipts/templates/snipts/list.html

61 lines
2.5 KiB
HTML
Raw Normal View History

{% extends "base.html" %}
{% load pagination_tags %}
2012-05-14 21:41:05 -07:00
{% block body-class %}{{ block.super }}{% if user.username == 'blog' %} blog{% endif %}{% endblock %}
2012-04-13 13:26:58 -07:00
{% block page-title %}/ {% if public and not public_user %}public{% else %}{{ user.username }}{% endif %}{% if tag %} / {{ tag }}{% endif %} - {{ block.super }}{% endblock %}
2012-02-18 11:42:30 -08:00
{% block js %}
{{ block.super }}
window.detail = false;
{% endblock %}
{% block content %}
{% if 'team-cancelled' in request.GET %}
<div class="alert alert-success" style="margin: 30px;">
Your team plan has been succesfully cancelled.
</div>
{% endif %}
<section class="snipts" id="snipts" ng-controller="SniptListController"
{% if request.user.profile.list_view == 'C' %}
ng-cloak ng-show="$root.account.id"
{% endif %}>
{% if request.user.username == user.username and user.username in users_for_full_page %}
{% for snipt in snipts %}
{% include "snipts/snipt-list.html" %}
{% empty %}
<div class="empty-snipts">
2016-11-02 13:37:03 -07:00
{% if request.user == user and not request.user.is_active and not public %}
Welcome! Please <a target="_self" href="/account/activate/">activate your account</a> to create your first snipt.
{% else %}
2016-11-02 13:41:25 -07:00
{% if request.user == user and request.user.is_authenticated %}
Welcome! Create your first snipt by clicking "Add Snipt" above.
{% else %}
No snipts to show here. Sorry!
{% endif %}
{% endif %}
</div>
{% endfor %}
{% else %}
{% autopaginate snipts 10 %}
{% for snipt in snipts %}
{% include "snipts/snipt-list.html" %}
{% empty %}
<div class="empty-snipts">
2016-11-02 13:39:51 -07:00
{% if request.user == user and not request.user.is_active and not public %}
Welcome! Please <a target="_self" href="/account/activate/">activate your account</a> to create your first snipt.
{% else %}
2016-11-02 13:41:25 -07:00
{% if request.user == user and request.user.is_authenticated %}
Welcome! Create your first snipt by clicking "Add Snipt" above.
{% else %}
No snipts to show here. Sorry!
{% endif %}
{% endif %}
</div>
{% endfor %}
{% paginate %}
{% endif %}
</section>
{% endblock %}