|
Revision 74, 349 bytes
(checked in by simon, 7 months ago)
|
|
Implemented tagging.
Switched to arrows for the "Newer | Older" navigation.
Removed special behaviour for logged in users.
|
| Line | |
|---|
| 1 | {% extends "substructure/base.html" %} |
|---|
| 2 | |
|---|
| 3 | {% block title %}Tagged with: {{ tag.name|escape }}{% endblock %} |
|---|
| 4 | |
|---|
| 5 | {% block content %} |
|---|
| 6 | |
|---|
| 7 | <div class="entry"> |
|---|
| 8 | |
|---|
| 9 | <h2>Tagged with: {{ tag.name|escape }}</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 %} |
|---|