snipt/snipts/templates/snipts/list.html

65 lines
2.4 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 %}>
2013-11-11 06:56:26 -08:00
{% autopaginate snipts 10 %}
{% for snipt in snipts %}
{% include "snipts/snipt-list.html" %}
2012-04-13 10:05:49 -07:00
{% empty %}
<div class="empty-snipts">
{% if request.user == user and not request.user.is_active %}
Welcome! Please click the activation link in your email in order to create your first snipt.
{% else %}
No snipts to show here. Sorry!
{% endif %}
2012-04-13 10:05:49 -07:00
</div>
{% endfor %}
{% paginate %}
</section>
2012-02-18 11:42:30 -08:00
<script type="text/javascript" id="disqus">
var disqus_shortname = 'snipt-net';
{% if debug %}
var disqus_developer = 1;
{% endif %}
(function () {
var s = document.createElement('script'); s.async = true;
s.type = 'text/javascript';
2012-04-23 18:51:16 -07:00
s.src = 'https://' + disqus_shortname + '.disqus.com/count.js';
2012-02-18 11:42:30 -08:00
(document.getElementsByTagName('HEAD')[0] || document.getElementsByTagName('BODY')[0]).appendChild(s);
}());
</script>
<script type="text/html" id="disqus-template">
var disqus_shortname = 'snipt-net';
{% if debug %}
var disqus_developer = 1;
{% endif %}
(function () {
var s = document.createElement('script'); s.async = true;
s.type = 'text/javascript';
2012-04-23 18:51:16 -07:00
s.src = 'https://' + disqus_shortname + '.disqus.com/count.js';
(document.getElementsByTagName('HEAD')[0] || document.getElementsByTagName('BODY')[0]).appendChild(s);
}());
</script>
{% endblock %}