support sql
[phorkie.git] / data / templates / list.htm
1 {% extends "base.htm" %}
2 {% block title %}List of all pastes{% endblock %}
3
4 {% block content %}
5 <ul class="nav nav-pills nav-stacked">
6 {% for repo in repos %}
7  <li>
8   <a href="{{repo.getLink('display')}}">
9    {{repo.id}}
10    {{repo.getDescription}}
11   </a>
12  </li>
13 {% endfor %}
14 </ul>
15
16 <ul class="pager">
17  {% if links.prev %}
18  <li class="previous">
19   <a href="{{links.prev}}">&larr; prev</a>
20  </li>
21  {% else %}
22  <li class="previous disabled">
23   <a href="#">&larr; prev</a>
24  </li>
25  {% endif %}
26  {% if links.next %}
27  <li class="next">
28   <a href="{{links.next}}">next &rarr;</a>
29  </li>
30  {% else %}
31  <li class="next disabled">
32   <a href="#">next &rarr;</a>
33  </li>
34  {% endif %}
35 </ul>
36 {% endblock %}