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
|
@ -154,7 +154,7 @@ input[type="file"] {
|
|||
display: none;
|
||||
}
|
||||
|
||||
/* Events List page */
|
||||
/* Events List page / Events Detail */
|
||||
|
||||
.statusBtn {
|
||||
width: 74px;
|
||||
|
@ -166,4 +166,16 @@ input[type="file"] {
|
|||
|
||||
.marginTopCreateButton {
|
||||
margin-top: 1.75em;
|
||||
}
|
||||
|
||||
.marginTopEditButton {
|
||||
margin-top: 0.85em;
|
||||
}
|
||||
|
||||
.marginTopOverview {
|
||||
margin-top: 5em;
|
||||
}
|
||||
|
||||
.overviewPadding {
|
||||
padding-left: 16px;
|
||||
}
|
|
@ -705,7 +705,11 @@ function processFileChange(event) {
|
|||
}
|
||||
}
|
||||
|
||||
document.getElementById('files').addEventListener('change', processFileChange, false);
|
||||
var filesHandle = document.getElementById('files');
|
||||
|
||||
if(filesHandle) {
|
||||
filesHandle.addEventListener('change', processFileChange, false);
|
||||
}
|
||||
|
||||
// reCAPTCHA
|
||||
|
||||
|
|
Reference in a new issue