1 2 3 4 5 6 7 8 9 10 11 12 13
{% extends "base.htm" %} {% block title %}List of all pastes{% endblock %} {% block content %} <ul class="nav nav-pills nav-stacked"> {% for repo in repos %} {% include 'repo-list.htm' %} {% endfor %} </ul> {% include 'pager.htm' %} {% endblock %}