{% extends "base.html" %} {% set active_page = "templates" %} {% block title %}Template Gallery - FaultRay{% endblock %} {% block page_title %}Template Gallery{% endblock %} {% block page_subtitle %}Pre-built resilience-optimized infrastructure templates{% endblock %} {% block head %} {% endblock %} {% block content %}
All {% for cat in categories %} {{ cat | replace('_', ' ') | title }} {% endfor %}
{% for t in gallery_templates %}

{{ t.name }}

{{ t.resilience_score | int }}

{{ t.description }}

{{ t.difficulty }} {{ t.category_value | replace('_', ' ') }} {{ t.cloud_provider }} {% for c in t.compliance %} {{ c }} {% endfor %}
{% endfor %}
{% if not gallery_templates %}

No templates found for this category.

Show All Templates
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}