Added template tag for tag links

This commit is contained in:
Jeremy Stretch
2018-05-18 11:09:11 -04:00
parent f8ba3ff495
commit d44214e24a
17 changed files with 122 additions and 16 deletions

View File

@@ -1,5 +1,6 @@
{% extends '_base.html' %}
{% load static from staticfiles %}
{% load helpers %}
{% load secret_helpers %}
{% block content %}
@@ -57,7 +58,13 @@
</tr>
<tr>
<td>Tags</td>
<td>{{ secret.tags.all|join:" " }}</td>
<td>
{% for tag in secret.tags.all %}
{% tag 'secrets:secret_list' tag %}
{% empty %}
<span class="text-muted">N/A</span>
{% endfor %}
</td>
</tr>
</table>
</div>