Commit a9e66de6b0df0c001d57af193853da7b21db426c
- Diff rendering mode:
- inline
- side by side
templates/show_entries.html
(3 / 1)
  | |||
15 | 15 | {% endif %} | |
16 | 16 | <ul class=entries> | |
17 | 17 | {% for entry in entries %} | |
18 | <li><a href={{ "/posts/"+entry.id }}><h2>{{ entry.title }}</h2></a>@<b>{{ entry.who }}</b> | ||
18 | {% if entry.who %} | ||
19 | <li><a href={{ "/posts/"+entry.id }}><h2>{{ entry.title }}</h2></a>@<b>{{ entry.who }}</b> | ||
19 | 20 | {{ entry.what }} {{ entry.where }} {{ entry.how|safe }} | |
21 | {% endif %} | ||
20 | 22 | {% else %} | |
21 | 23 | <li><em>Unbelievable. No entries here so far</em> | |
22 | 24 | {% endfor %} |