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,11 +4,16 @@
|
|||
|
||||
{% block event_nav_launch %}active{% endblock %}
|
||||
{% block event_content %}
|
||||
<h2>Event Details</h2>
|
||||
<span>Trustee keys: {{ event.trustee_keys.count }} / {{ event.users_trustees.count }}</span>
|
||||
<br/>
|
||||
<span><strong>Trustee Keys Received:</strong> {{ event.trustee_keys.count }} / {{ event.users_trustees.count }}</span>
|
||||
<br />
|
||||
<span>EID (param): {{ event.EID }} </span>
|
||||
<br/>
|
||||
<span><strong>Human-readable Event ID:</strong> {{ event.EID_hr }} </span>
|
||||
<br />
|
||||
<span>Public key: {{ event.public_key }} </span>
|
||||
<br/>
|
||||
<span><strong>Group Param ID:</strong> {{ event.EID_crypto }} </span>
|
||||
<br />
|
||||
<br/>
|
||||
<span><strong>Public key:</strong> {{ event.public_key }} </span>
|
||||
|
||||
{% endblock %}
|
||||
|
|
Reference in a new issue