Changeset View
Changeset View
Standalone View
Standalone View
films/templates/films/productionlog_month.html
| {% extends 'films/base_films.html' %} | {% extends 'films/base_films.html' %} | ||||
| {% load static %} | {% load static %} | ||||
| {% block title_append %} - {{ film.title }} Production Logs{% endblock title_append %} | {% block title_append %} - {{ film.title }} Production Logs{% endblock title_append %} | ||||
| {% block content %} | {% block content %} | ||||
| <div class="container-xl pt-4"> | <div class="container-xl pt-4"> | ||||
| <section class="mb-5"> | <section class="mb-5"> | ||||
| <!-- Latest Updates --> | <!-- Latest Updates --> | ||||
| <div class="row justify-content-center"> | <div class="row justify-content-center"> | ||||
| <div class="col-md-12 mb-3 text-center"> | <div class="col-md-12 mb-3 text-center"> | ||||
| <p class="subtitle">{{ film.title }}</p> | <p class="subtitle">{{ film.title }}</p> | ||||
| <h1 class="mb-0">Production Logs</h1> | <h1 class="mb-0">Production Logs</h1> | ||||
| <p>Follow the latest updates and progress on {{ film.title }} right here.</p> | <p>Follow the latest updates and progress on {{ film.title }} right here.</p> | ||||
| {% include 'films/components/admin/production_log_manage.html' %} | {% include 'films/components/admin/production_log_manage.html' %} | ||||
| {% include 'films/components/pagination_dates.html' %} | {% include 'films/components/pagination_dates.html' %} | ||||
| </div> | </div> | ||||
| </div> | </div> | ||||
| {% if object_list|length %} | {% if object_list|length %} | ||||
| <div class="production-logs"> | <div class="production-logs"> | ||||
| {% for production_log in object_list %} | {% for production_log in object_list %} | ||||
| {% include 'films/components/production_log_entry.html' %} | {% include 'films/components/production_log_entry.html' %} | ||||
| {% endfor %} | {% endfor %} | ||||
| </div> | </div> | ||||
| {% include 'films/components/pagination_dates.html' %} | {% include 'films/components/pagination_dates.html' %} | ||||
| {% else %} | {% else %} | ||||
| <div class="row"> | <div class="row"> | ||||
| <div class="col text-center"> | <div class="col text-center"> | ||||
| <div class="bg-secondary py-4 rounded"> | <div class="bg-secondary py-4 rounded"> | ||||
| <h3 class="mb-0">No Weeklies to show</h3> | <h3 class="mb-0">No Weeklies to show</h3> | ||||
| </div> | </div> | ||||
| </div> | </div> | ||||
| </div> | </div> | ||||
| {% endif %} | {% endif %} | ||||
| </div> | </div> | ||||
| </section> | </section> | ||||
| </div> | </div> | ||||
| {% endblock content %} | {% endblock content %} | ||||