Link Button list.html

<ul>
    {% for tag in tags%}
    <li> {{tag.name}}  <a href="{% url 'edit_tags' tag.name %}">Edit</a> | <a href="{% url 'delete_tags' tag.name %}">Delete</a></li>

    {% endfor %}
</ul>

<a href="{% url 'create_tags' %}"> Create Tags</a>

Last updated