{% extends "layouts/" + render_mode + ".html" %}
{% block title %}{{_("Add Tag")}} {% endblock %}
{% block content %}
{% set form_title = _("Add Tag") %}
{% set tag = {
"tid": "",
"name": "",
"slug": "",
"type": "tag",
"label": "true",
"label_color": "gray",
"icon": "icon-tag",
"display": "tag"
} %}
{% set prefix = "" %}
{% include("tags/form.html") %}
{% endblock %}