Skip to content
Merged
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
8 changes: 4 additions & 4 deletions app/templates/main/userProfile.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ <h1>{{volunteer.firstName}} {{volunteer.lastName}}</h1>
</div>
</div>
<div class="profile-links">
<a class="btn btn-warning btn-sm" role="button" data-bs-toggle="modal" data-bs-target="#editVolunteerModal">Edit Volunteer Information</a>
<a class="btn btn-warning btn-sm" role="button" data-bs-toggle="modal" data-bs-target="#editVolunteerModal">Edit Personal Information</a>

{% if volunteer == g.current_user or g.current_user.isCeltsAdmin %}
<a href="/profile/{{volunteer.username}}/travelForm" class="btn btn-primary btn-sm" target="_blank">Print Travel Form</a>
Expand Down Expand Up @@ -663,12 +663,12 @@ <h6 align="left" class="d-inline-flex" id="unbanVolunteerEndDate">End Date: &nbs
<!-- ################# Ban or Unban Modal ################ -->


<!-- ################# Edit Volunteer Information Modal ################ -->
<!-- ################# Edit Personal Information Modal ################ -->
<div class="modal fade" id="editVolunteerModal" tabindex="-1" aria-labelledby="editVolunteerModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Edit Volunteer Information</h5>
<h5 class="modal-title">Edit Personal Information</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
Expand Down Expand Up @@ -711,6 +711,6 @@ <h5>Dietary Restrictions</h5>
</div>
</div>
</div>
<!-- ################# Edit Volunteer Information Modal ################ -->
<!-- ################# Edit Personal Information Modal ################ -->

{% endblock %}
Loading