{% extends 'LayoutMain.html' %} {% load static %} {% block title %}Dashboard - My Django Project{% endblock %} {% block content %}
Pages List Add New
{% for page in pages %} {% empty %} {% endfor %}
Sl.no Page Name Title URL Slug Position Show in Menu Edit Delete
{{ forloop.counter }} {{ page.page_name }} {{ page.title }} {{ page.slug }} {{ page.get_position_display }} {% if page.show_in_menu %} {% else %} {% endif %} 🗑
No pages added yet. Click "Add New" to create one.
{% endblock %}