Skip to content
Closed
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
12 changes: 12 additions & 0 deletions app/templates/events/eventKiosk.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,18 @@
<!--<button onclick="openFullscreen();">Open Video in Fullscreen Mode</button>-->
<div>
<h1 class="my-5" align="center">{{ event.name }}</h1>
{% if event.isService or event.program_id == 5 %}
<h3 class="text-danger" align="center">Attention</h3>
{% endif %}
{% if event.isService %}
<p align="center">
I understand that I am participating in this activity as a volunteer, that it is not part of my Work-Learning-Service (WLS) role, that I will not receive compensation, and that I am choosing to engage in this activity for service-learning or personal enrichment.
</p>
{% elif event.program_id == 5%}
<p align="center">
I acknowledge that when I sign in to this event, I am fulfilling a requirement for my Bonner Scholarship, and I am not clocked in for my labor position.
</p>
{% endif %}
<h2 class="m-5" align="center">{{ bNumberToUser }}</h2>
</div>
<div id="signinData" class="mx-auto px-5 mb-2">
Expand Down
2 changes: 2 additions & 0 deletions app/templates/events/eventView.html
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,8 @@ <h3>Description</h3><p>{{eventData.description|urlize}}</p><br>
{% endif %}
{% if eventData.isService %}
<p>This event earns service hours.</p>
<h4 class="text-danger">Attention</h4>
<p>Participating in this activity means that you are a volunteer, that it is not part of your Work-Learning-Service (WLS) role, that you will not receive compensation, and that you are choosing to engage in this activity for service-learning or personal enrichment.</p>
{% else %}
<p>This event does not earn service hours.</p>
{% endif %}
Expand Down