snipt/snipts/templates/snipts/list-user.html

29 lines
890 B
HTML
Raw Normal View History

{% extends "snipts/list.html" %}
2014-05-04 19:47:15 -07:00
{% block add-snipt %}
{% include 'add-snipt.html' %}
2014-05-04 19:47:15 -07:00
{% endblock %}
{% block breadcrumb %}
<li><a href="/{{ user.username }}/">{{ user.username }}</a></li>
{% if tag %}
2012-04-22 18:47:49 -07:00
<li><span class="prompt">/</span> <a href="/{{ user.username }}/tag/{{ tag.slug }}/">{{ tag.name }}</a></li>
{% endif %}
{% if favorites %}
<li><span class="prompt">/</span> <a href="/{{ user.username }}/favorites/">Favorited snipts</a></li>
{% endif %}
2013-06-27 17:52:04 -07:00
{% if snipts %}
<li class="compact">
<a ng-click="$root.account.list_view = 'C'" href>Compact</a>
2013-06-27 17:52:04 -07:00
</li>
<li class="normal">
<a ng-click="$root.account.list_view = 'N'" href>Normal</a>
2013-06-27 17:52:04 -07:00
</li>
{% endif %}
{% endblock %}
2012-07-08 09:25:15 -07:00
{% block aside-top %}
2013-02-10 16:24:55 -08:00
{% include "profile.html" %}
2011-10-12 13:34:01 -07:00
{% include "snipts/tags-user.html" %}
{% endblock %}