diff options
Diffstat (limited to 'templates/web')
-rw-r--r-- | templates/web/index.html | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/templates/web/index.html b/templates/web/index.html index 1d1d869..4436d23 100644 --- a/templates/web/index.html +++ b/templates/web/index.html @@ -10,7 +10,10 @@ <ul> {% for entry in entries %} <li id="{{ entry.eid }}"> - <a href="{{ url_for('entry', eid=entry.eid) }}">{{ entry }}</a> + <a href="{{ url_for('entry', eid=entry.eid) }}"> + {{ entry.data.name }} + </a> + <<a href="{{ entry.data.url }}">{{ entry.data.url }}</a>> </li> {% endfor %} </dl> |