Changeset View
Changeset View
Standalone View
Standalone View
films/templates/films/productionlog_detail.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"> | <p class="subtitle"> | ||||
| {% if production_log.start_date %}{{ production_log.start_date|date:'M jS Y' }} | {% endif %}{{ film.title }}</p> | {% if production_log.start_date %}{{ production_log.start_date|date:'M jS Y' }} | {% endif %}{{ film.title }}</p> | ||||
| <h1 class="mb-0">{{ production_log.name }}</h1> | <h1 class="mb-0">{{ production_log.name }}</h1> | ||||
| </div> | </div> | ||||
| </div> | </div> | ||||
| <div class="production-logs"> | <div class="production-logs"> | ||||
| {% include 'films/components/production_log_entry.html' with production_log_link="false" header="false" %} | {% include 'films/components/production_log_entry.html' with production_log_link="false" header="false" %} | ||||
| </div> | </div> | ||||
| {% include 'films/components/production_log_pagination.html' %} | {% include 'films/components/production_log_pagination.html' %} | ||||
| </section> | </section> | ||||
| </div> | </div> | ||||
| {% endblock content %} | {% endblock content %} | ||||