location_page.html 352 B

123456789101112131415
  1. {% extends "base.html" %}
  2. {% load wagtailimages_tags %}
  3. {% block content %}
  4. <h1>{{ page.title }}</h1>
  5. <figure>
  6. {% image self.image fill-600x600 %}
  7. </figure>
  8. <p>{{ page.address }}</p>
  9. <p>{{ page.lat_long }}</p>
  10. {% for hours in page.opening_hours %}
  11. <li>{{ hours }}</li>
  12. {% endfor %}
  13. {% endblock content %}