Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions api/chair/setParameters.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ def setParameters_GET ():
openDate = datetime.datetime.strptime(data['applicationOpenDate'], dateFormat)
closeDate = (datetime.datetime
.strptime(data['applicationCloseDate'], dateFormat)
.replace(hour=11, minute=55) )
.replace(hour=23, minute=59) )
# ProposalOpenDate = datetime.datetime.strptime(data['ProposalOpenDate'], dateFormat)
ProposalAcceptanceDate = datetime.datetime.strptime(data['ProposalAcceptanceDate'], dateFormat)
# ProposalClosedDate = ( datetime.datetime.strptime(data['ProposalClosedDate'], dateFormat).replace(hour=11, minute=55) )

# AbstractnarrativesAcceptanceDate = ( datetime.datetime.strptime(data['AbstractnarrativesAcceptanceDate'], dateFormat).replace(hour=11, minute=55) )

AllSubmissionsClosedDate = ( datetime.datetime.strptime(data['AllSubmissionsClosedDate'], dateFormat)
.replace(hour=11, minute=55) )
.replace(hour=23, minute=59) )



Expand Down
4 changes: 2 additions & 2 deletions api/templates/snips/horizontalProgressBar.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
</div>
<div class="point" id="pending">
<div class="bullet"></div>
<label class="bar-label" style="text-align: center">Proposals Due: <br><small style="font-size:12px;" "text-align: center;">{{currentCycle.appCloseDate.strftime("%m/%d/%Y")}}</small></label>
<label class="bar-label" style="text-align: center">Proposals Due: <br><small style="font-size:12px;" "text-align: center;">{{currentCycle.appCloseDate.strftime("%m/%d/%Y")}} by 11:59PM</small></label>
</div>
{# <div class="point" id="pending">
<div class="bullet"></div>
Expand All @@ -39,7 +39,7 @@
</div> #}
<div class="point" id="abstract_submission">
<div class="bullet"></div>
<label class="bar-label" style="text-align: center">Abstracts Due:<br><small style="font-size:12px;" "text-align: center;">{{currentCycle.AllSubmissionsClosedDate.strftime("%m/%d/%Y")}}</small></label>
<label class="bar-label" style="text-align: center">Abstracts Due:<br><small style="font-size:12px;" "text-align: center;">{{currentCycle.AllSubmissionsClosedDate.strftime("%m/%d/%Y")}} by 11:59PM</small></label>
</div>
{# <div class="point" id="allsubmissionscloses">
<div class="bullet"></div>
Expand Down