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
10 changes: 7 additions & 3 deletions app/templates/events/createEvent.html
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@
{% else %}
<div class="text-center">
<h1 id="pageTitle">{{page_title}}</h1>

Comment thread
MImran2002 marked this conversation as resolved.
</div>
{% endif %}

Expand Down Expand Up @@ -310,10 +311,13 @@ <h1 id="pageTitle">{{page_title}}</h1>
{% endif %}
</div>
</div>
<div class="row justify-content-left mt-2">
<div class="row justify-content-center mt-2">
<div class="col-md-6 offset-md-3">
<div class="text-center mb-2">
<div class="w-100 m-auto">
<!--Submission buttons-->
{% if not event %}
Comment thread
MImran2002 marked this conversation as resolved.
<a href="{{ url_for('admin.templateSelect') }}" class="btn btn-secondary m-2">Back</a>
{% endif %}
{% if event %}
<button type="button" class="btn btn-danger" data-bs-toggle="modal" data-bs-target="#deleteWarning">Delete
Event</button>
Expand All @@ -326,7 +330,7 @@ <h1 id="pageTitle">{{page_title}}</h1>
<button type="button" class="btn btn-success" data-bs-toggle="modal" data-bs-target="#renewWarning">Renew
Event</button>
{% endif %}
<input type="button" class="btn btn-primary" id="saveButton" value="Save" />
<input type="button" class="btn btn-primary" id="saveButton" value="Save" />
</div>
</div>
</div>
Expand Down
12 changes: 11 additions & 1 deletion app/templates/main/userProfile.html
Original file line number Diff line number Diff line change
Expand Up @@ -541,6 +541,13 @@ <h5>Requirement Progress</h5>
{% endif %}
<!-- ################# Bonner Scholar ################ -->

{% if volunteer != g.current_user %}
<div class="my-3">
<a href="{{ url_for('admin.studentSearchPage') }}" class="btn btn-secondary">Back</a>
</div>
{% endif %}


</div>
<!-- ################# Add Notes Modal ################ -->
<div class="modal fade" id="noteModal" tabindex="-1" aria-labelledby="addProfileNoteModalLabel" aria-hidden="true" style="width:-60px;">
Expand Down Expand Up @@ -663,6 +670,8 @@ <h6 align="left" class="d-inline-flex" id="unbanVolunteerEndDate">End Date: &nbs
<!-- ################# Ban or Unban Modal ################ -->




<!-- ################# Edit Volunteer Information Modal ################ -->
<div class="modal fade" id="editVolunteerModal" tabindex="-1" aria-labelledby="editVolunteerModalLabel" aria-hidden="true">
<div class="modal-dialog">
Expand Down Expand Up @@ -707,10 +716,11 @@ <h5>Dietary Restrictions</h5>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-danger" data-bs-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>
<!-- ################# Edit Volunteer Information Modal ################ -->

{% endblock %}

Loading