mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-28 10:52:16 +00:00
Used correct values in event_detail
This commit is contained in:
@@ -53,7 +53,7 @@
|
|||||||
<dd>
|
<dd>
|
||||||
{% if object.person %}
|
{% if object.person %}
|
||||||
<a href="{% url 'person_detail' object.person.pk %}" class="modal-href">
|
<a href="{% url 'person_detail' object.person.pk %}" class="modal-href">
|
||||||
{{ object.person }}
|
{{ object.person.name }}
|
||||||
</a>
|
</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</dd>
|
</dd>
|
||||||
@@ -79,7 +79,7 @@
|
|||||||
<dd>
|
<dd>
|
||||||
{% if object.organisation %}
|
{% if object.organisation %}
|
||||||
<a href="{% url 'organisation_detail' object.organisation.pk %}" class="modal-href">
|
<a href="{% url 'organisation_detail' object.organisation.pk %}" class="modal-href">
|
||||||
{{ object.organisation }}
|
{{ object.organisation.name }}
|
||||||
</a>
|
</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</dd>
|
</dd>
|
||||||
@@ -108,7 +108,7 @@
|
|||||||
<dd>
|
<dd>
|
||||||
{% if object.venue %}
|
{% if object.venue %}
|
||||||
<a href="{% url 'venue_detail' object.venue.pk %}" class="modal-href">
|
<a href="{% url 'venue_detail' object.venue.pk %}" class="modal-href">
|
||||||
{{ object.venue }}
|
{{ object.venue.name }}
|
||||||
</a>
|
</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</dd>
|
</dd>
|
||||||
|
|||||||
Reference in New Issue
Block a user