{% extends theme_template %} {% block title %}Templates - SecuBox WebUI{% endblock %} {% block content %}

📄 Configuration Templates

Generate UCI configs, network setups, and custom configurations

{% if template_types %}
All Types {% for ttype in template_types %} {{ ttype }} {% endfor %}
{% endif %} {% if templates %}
{% for template in templates %}

{{ template.emoji }} {{ template.name }}

{{ template.template_type }}

{{ template.description }}

{% if template.required_modules %}
Required Modules:
{% for module in template.required_modules %} {{ module }} {% endfor %}
{% endif %} {% if template.tags %}
{% for tag in template.tags %} #{{ tag }} {% endfor %}
{% endif %}
{% endfor %}
{% else %}

No templates available. Create templates to generate configurations.

{% endif %}
{% for template in templates %}

Generate: {{ template.name }}

{% endfor %} {% endblock %}