{% extends 'base_template/base1.html' %}
{% block content %}
{% load tz %}
{% include 'dashboard/content/navbar.html' %}
{% include 'dashboard/content/sidebar.html' %}
Floating Images
Add Floating Image
| Preview |
Title |
Position |
Visible |
Actions |
{% for img in images %}
 |
{{ img.title }} |
{{ img.get_position_display }} |
{% with now=timezone.now %}
{% if img.is_active and img.start_date <= now and img.end_date >= now %}
Yes
{% else %}
No
{% endif %}
|
{% endwith %}
Edit
|
{% empty %}
| No floating images yet. |
{% endfor %}
{% include 'dashboard/content/footer.html' %}
{% endblock %}