{% extends "base.html" %}
{% block title %}
DNS Control Panel - Templates{% endblock %}
{% block dashboard_stat %}
{% endblock %}
{% block content %}
{% with errors = get_flashed_messages(category_filter=["error"]) %} {% if errors %}
Error!
x
{%- for msg in errors %}
- {{ msg }}
{% endfor -%}
{% endif %} {% endwith %}
Name |
Description |
Number of Records |
Action |
{% for template in templates %}
{{ template.name }}
|
{{ template.description }}
|
{{ template.records|count }}
|
|
{% endfor %}
{% endblock %}
{% block extrascripts %}
{% endblock %}
{% block modals %}
{% endblock %}