aboutsummaryrefslogtreecommitdiff
path: root/apps/dreki_web/templates/store_list.dtl
diff options
context:
space:
mode:
Diffstat (limited to 'apps/dreki_web/templates/store_list.dtl')
-rw-r--r--apps/dreki_web/templates/store_list.dtl8
1 files changed, 5 insertions, 3 deletions
diff --git a/apps/dreki_web/templates/store_list.dtl b/apps/dreki_web/templates/store_list.dtl
index 65dc5af..81209a6 100644
--- a/apps/dreki_web/templates/store_list.dtl
+++ b/apps/dreki_web/templates/store_list.dtl
@@ -1,9 +1,11 @@
<h1 class="text-lg">{{ location }} :: {{ namespace }}:{{ directory }}</h1>
<ul>
-{% for res in result %}
-<li><a href="{{ res.href }}">{{ res.id }}</a></li>
+{% for res in results %}
+<li><a href="{{ res.href }}" class="text-primary-700 dark:text-primary-100">{{ res.id }}</a> {{ res.params.title }}</li>
{% endfor %}
</ul>
-<a href="{{ new }}">Create</a>
+{% for action in actions %}
+<a href="{{ action.href }}">{{ action.title }}</a>
+{% endfor %}