diff options
author | Matthew Lemon <lemon@matthewlemon.com> | 2020-10-23 11:09:11 +0100 |
---|---|---|
committer | Matthew Lemon <lemon@matthewlemon.com> | 2020-10-23 11:09:11 +0100 |
commit | a9c4a19b363772dc2ae1465c3c451c9e04cb68d0 (patch) | |
tree | 3c49d738435f38264299d5f1f4e27a5cdc343072 | |
parent | 15073041461d2656e9612ea2c461b221c4aefd4e (diff) |
removed old card implementation to show events
-rw-r--r-- | ctrack/organisations/templates/organisations/organisation_detail.html | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/ctrack/organisations/templates/organisations/organisation_detail.html b/ctrack/organisations/templates/organisations/organisation_detail.html index f64d72e..4c09cce 100644 --- a/ctrack/organisations/templates/organisations/organisation_detail.html +++ b/ctrack/organisations/templates/organisations/organisation_detail.html @@ -181,27 +181,6 @@ {% endfor %} </tbody> </table> - {% for event in single_datetime_events %} - <div class="card" style="width: 100%"> - <div class="card-body"> - <h5 class="card-title">{{ event.short_description }} | <a - href="{% url "register:event_update_simple_event_from_org" event.pk object.slug %}">Edit</a> - {% if event.private %} - <span class="badge badge-warning float-right">PRIVATE</span> - {% endif %} - </h5> - <div class="card-subtitle mb-2"> - <span class="badge badge-info">{{ event.type_descriptor }}</span> - <span class="badge badge-light">{{ event.date|date:"l j F Y" }}, {{ event.datetime|date:"G:i" }}</span></h5> - </div> - <p class="card-text">{{ event.comments }}</p> - Participants: - {% for person in event.participants.all %} - <a href="{% url "organisations:person-detail" person.id %}">{{ person }}</a> - {% endfor %} - </div> - </div> - {% endfor %} </div> </div> </div> |