General housekeeping such as adding package.json for Node server, bash script for launching a celery worker and updating the readme to assist with launching the DEMOS2 app. Updated some models to include UI helper functions. Main work done is around event preparation - with a Celery worker running and the Node server, trustees are now emailed a link to prepare events. The event detail page has also had a bit of an overhaul to include additional information and to make it easier to use
This commit is contained in:
parent
de9eaa7881
commit
f82a380fa4
21 changed files with 337 additions and 696 deletions
|
@ -4,7 +4,8 @@
|
|||
|
||||
{% block event_nav_organisers %}active{% endblock %}
|
||||
{% block event_content %}
|
||||
<h2>Event Organisers</h2>
|
||||
<h2>Event Organisers</h2>
|
||||
<hr/>
|
||||
{% if object.users_organisers.all %}
|
||||
<ul class="list-group">
|
||||
{% for user in object.users_organisers.all %}
|
||||
|
@ -14,7 +15,9 @@
|
|||
{% else %}
|
||||
<p>No organisers for this Event.</p>
|
||||
{% endif %}
|
||||
<h2>Event Trustees</h2>
|
||||
<hr/>
|
||||
<h2>Event Trustees</h2>
|
||||
<hr/>
|
||||
{% if object.users_trustees.all %}
|
||||
<ul class="list-group">
|
||||
{% for user in object.users_trustees.all %}
|
||||
|
@ -24,7 +27,9 @@
|
|||
{% else %}
|
||||
<p>No trustees for this Event.</p>
|
||||
{% endif %}
|
||||
<h2>Voters</h2>
|
||||
<hr/>
|
||||
<h2>Voters</h2>
|
||||
<hr/>
|
||||
{% if object.voters.all %}
|
||||
<ul class="list-group">
|
||||
{% for voter in object.voters.all %}
|
||||
|
|
Reference in a new issue