Sith/counter/templates/counter/counter_detail.jinja

12 lines
241 B
Django/Jinja

{% extends "core/base.jinja" %}
{% block content %}
<h3>Counter</h3>
<h4>{{ counter }}</h4>
<p><strong>Club: </strong> {{ counter.club }}</p>
<p><strong>Products: </strong> {{ counter.products.all() }}</p>
{% endblock %}