{% extends "exams/base.html" %}
{% load static %}
{% block content %}
Website Management View SITE
| Image | Title | Status | Action |
{% for g in gallery %}
 |
{{ g.title }} |
{% if g.is_active %}
Enabled
{% else %}
Disabled
{% endif %}
|
|
{% endfor %}
| Title | Status | Action |
{% for n in news %}
| {{ n.title }} |
{% if n.is_active %}
Enabled
{% else %}
Disabled
{% endif %}
|
|
{% endfor %}
{% endblock %}