I have this bit of HTML that is going to be used in multiple places.
{% if event.finished_payments %}
<span class="label label-success">Complete</span>
{% else %}
<span class="label label-important">Incomplete</span>
{% endif %}
I want to write a template tag that takes in a bool and returns <span class="label label-success">Complete</span> or <span class="label label-important">Incomplete</span> depending on whether the argument is True or False which I suppose looks something like this:
{% tf_label event.finished_payments %}
Alternatively, is another way of achieving this using the include template tag and pass in parameters?