root/bitstructures/trunk/templates/substructure/all.html

Revision 72, 303 bytes (checked in by simon, 8 months ago)

Implemented paging of entries.
Increased the amount of white space and the maximum page width.

Line 
1{% extends "substructure/base.html" %}
2
3{% block title %}All entries{% endblock %}
4
5{% block content %}
6
7<div class="entry">
8
9<h2>All entries</h2>
10
11<ul>
12{% for entry in entry_list %}
13<li><a href="{{ entry.get_absolute_url }}">{{ entry.title|escape }}</a></li>
14{% endfor %}
15</ul>
16
17</div>
18
19{% endblock %}
Note: See TracBrowser for help on using the browser.