Skip to content

Commit 50720d0

Browse files
EncryptExAdriMM26
andauthored
FEAT: add timer disclaimer (#294)
* Canvis review volunteers (#293) * clarified msgs --------- Co-authored-by: Adri <[email protected]>
1 parent d962be1 commit 50720d0

File tree

3 files changed

+15
-7
lines changed

3 files changed

+15
-7
lines changed

applications/templates/application.html

+12-5
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,19 @@
2323
</div>
2424
{% endif %}
2525
<div style="padding-left: 15px; padding-right: 15px">
26+
<div class="alert alert-warning">
2627
{% if application.can_be_edit %}
27-
<p>It is still possible to modify your application.</p>
28-
{% else %}
29-
<p>Your application has been reviewed already. Editing has been disabled to make sure all reviewers get the
30-
same data. If you would like to change something important, please email us at {{ h_contact_email|urlize }}.</p>
31-
{% endif %}
28+
29+
30+
<p>
31+
Be careful, you can only edit the application during <b style="text-decoration: underline;">2 hours</b> after applying
32+
</p>
33+
34+
{% else %}
35+
<p>Your application has been reviewed already. Editing has been disabled to make sure all reviewers get the
36+
same data. If you would like to change something important, please email us at {{ h_contact_email|urlize }}.</p>
37+
{% endif %}
38+
</div>
3239
</div>
3340
{% include 'include/application_form.html' %}
3441

applications/templates/include/application_form.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
</div>
2525

2626
{% if not application or application.can_be_edit %}
27-
<button class="btn btn-success btn-block" type="submit">{% if application %}Update application{% else %}
27+
<button class="btn btn-success btn-block" type="submit" {% if application and not application.can_be_edit %} disabled {% endif %}>{% if application %}Update application{% else %}
2828
Submit application{% endif %}</button>
2929

3030
{% endif %}

organizers/templates/other_application_detail.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ <h3>Volunteering</h3>
4444
{% if not app.first_time_volunteer %}
4545
{% include 'include/field.html' with desc='Other editions' value=app.which_hack %}
4646
{% endif %}
47-
{% include 'include/field.html' with desc='English Level' value=app.english_level %}
47+
{% include 'include/field.html' with desc='Languages' value=app.languages %}
4848
{% include 'include/field.html' with desc='Attendance' value=app.attendance %}
4949
{% include 'include/field.html' with desc='Motivation' value=app.volunteer_motivation %}
5050
<hr>
@@ -57,6 +57,7 @@ <h3>Other questions</h3>
5757
{% include 'include/field.html' with desc='T-shirt size' value=app.tshirt_size %}
5858
{% include 'include/field.html' with desc='Dietary restrictions' value=app.diet %}
5959
{% include 'include/field.html' with desc='Other diet' value=app.other_diet %}
60+
{% include 'include/field.html' with desc='How you meet us' value=app.hear_about_us %}
6061
<hr>
6162
<dt>
6263
<h3>Extra</h3>

0 commit comments

Comments
 (0)