diff options
-rw-r--r-- | templates/film/list.tera | 1 | ||||
-rw-r--r-- | templates/room/list.tera | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/templates/film/list.tera b/templates/film/list.tera index e5676b8..d40b6bf 100644 --- a/templates/film/list.tera +++ b/templates/film/list.tera @@ -19,6 +19,7 @@ No films defined. {{ r.title }} {% if r.url -%}</a>{% endif -%} ({{ r.id }}) + </li> {% endfor -%} </ul> {% endif %} diff --git a/templates/room/list.tera b/templates/room/list.tera index 7654427..977edb1 100644 --- a/templates/room/list.tera +++ b/templates/room/list.tera @@ -14,7 +14,7 @@ No rooms defined. {% else %} <ul> {% for r in rooms -%} - <li>{{ r.name }} ({{ r.id }}) + <li>{{ r.name }} ({{ r.id }})</li> {% endfor -%} </ul> {% endif %} |