{% extends "base.html" %} {% load pagination_tags %} {% block body-class %}{{ block.super }}{% if user.username == 'blog' %} blog{% endif %}{% endblock %} {% block page-title %}/ {% if public and not public_user %}public{% else %}{{ user.username }}{% endif %}{% if tag %} / {{ tag }}{% endif %} - {{ block.super }}{% endblock %} {% block js %} {{ block.super }} window.detail = false; {% endblock %} {% block content %}
{% if not request.user.is_authenticated %} {% include 'ad-leaderboard-pro.html' %} {% elif not request.user.profile.teams_beta_seen %} {% include 'ad-leaderboard-pro.html' %} {% endif %} {% autopaginate snipts 10 %} {% for snipt in snipts %} {% include "snipts/snipt-list.html" %} {% empty %}
No snipts to show here. Sorry!
{% endfor %} {% paginate %}
{% endblock %}