Added list and utility views for tags

This commit is contained in:
Jeremy Stretch
2018-05-22 12:22:46 -04:00
parent 918339cfa8
commit 03a1c48b54
6 changed files with 111 additions and 5 deletions

View File

@@ -0,0 +1,11 @@
{% extends '_base.html' %}
{% load buttons %}
{% block content %}
<h1>{% block title %}Tags{% endblock %}</h1>
<div class="row">
<div class="col-md-12">
{% include 'utilities/obj_table.html' with bulk_delete_url='extras:tag_bulk_delete' %}
</div>
</div>
{% endblock %}