{% extends "admin/base.html" %} {% block page_title %}چینش منوی اصلی{% endblock %} {% block page_subtitle %}مدیریت و تنظیم دکمه‌های منوی ربات تلگرام{% endblock %} {% block extra_js %} {% endblock %} {% block content %}
مدیریت منو
دکمه‌ها را بکشید و رها کنید
پیش‌نمایش منو
برای تغییر چیدمان، دکمه‌ها را بکشید و رها کنید.
لیست دکمه‌های فعال
{% for button in buttons %}
{{ button.button_text }}
{{ button.callback_data }}
{{ 'فعال' if button.is_active else 'غیرفعال' }}
{% endfor %}
دکمه‌های آماده
{% for button in available_buttons %}
{{ button.text }}
{{ button.description }}
{% endfor %}
{% endblock %}