{% from 'macros/action.html' import table %} {% from 'macros/video.html' import table as video_table, check_button %} {% extends "base.html" %} {% set title = "Tags" %} {% block style %} {% endblock %} {% block script %} {% endblock %} {% block content %} {% include "tag/title.html" %} {% if actions %} {{ table(actions, tag_id=tag.id) }} {% else %} {% endif %} {{ check_button() }} {{ video_table(tag) }} {{ check_button() }} {% endblock %}