{% extends "base.html" %} {% from "macros.html" import guide_box %} {% block title %}پروفایل‌ها{% endblock %} {% block content %}

پروفایل‌ها

+ پروفایل جدید
{{ guide_box(guide, 'profiles') }}
{% for p in profiles %}
{{ p.name }}{% if p.is_default %} پیش‌فرض{% endif %}

{{ p.description or '' }}

    {% for item in p.items %}
  • {{ item.category }}: {{ item.mirror.name if item.mirror else '-' }}
  • {% endfor %}
{% else %}

پروفایلی وجود ندارد

{% endfor %}
{% endblock %}