Added 'is on campus' field to venue

This commit is contained in:
2023-09-23 18:54:29 +00:00
parent 5a54092771
commit ef2826ab0a
8 changed files with 226 additions and 120 deletions

View File

@@ -1,6 +1,7 @@
{% extends override|default:"base_rigs.html" %}
{% load widget_tweaks %}
{% load button from filters %}
{% load verbose_name from filters %}
{% load markdown_tags %}
{% block content %}
@@ -30,6 +31,11 @@
<dd>{{ object.three_phase_available|yesno|capfirst }}</dd>
{% endif%}
{% if object.on_campus is not None %}
<dt>{{ object|verbose_name:"on_campus" }}</dt>
<dd>{{ object.on_campus|yesno|capfirst }}</dd>
{% endif%}
{% if object.union_account is not None %}
<dt>Union Account</dt>
<dd>{{ object.union_account|yesno|capfirst }}</dd>