{% extends "data_explorer/table_entries_base.html" %} {% block table_headers %} {% table_header "id" "ID" min_width=60 %} {% table_header "name" "Tag" min_width=100 %} {% if not project_view %} {% table_header "tag_type" min_width=150 %} {% table_header "project__name" "Project" min_width=100 %} {% endif %} {% table_header "description" min_width=300 %} {% table_header "created_at" "Created" min_width=115 %} {% table_header "updated_at" "Updated" min_width=115 %} Edit {% endblock %} {% block table_rows %} {% foreign_key_link entry %} {{ entry.name }} {% if not project_view %} {{ entry.tag_type }} {% if entry.tag_type == "project-specific" %} {% foreign_key_link entry.project "name" %} {% else %} ( -- all -- ) {% endif %} {% endif %} {{ entry.description }} {{ entry.created_at|date:"Y-m-d" }} {{ entry.updated_at|date:"Y-m-d" }} {% update_entry_link entry %} {% endblock %}