Skip to content

Commit

Permalink
Merge pull request #475 from ITPNYU/feature/update_email_template
Browse files Browse the repository at this point in the history
Add room info to email template
  • Loading branch information
rlho authored Nov 5, 2024
2 parents eb40fbf + 76b2938 commit eae14ae
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions booking-app/app/templates/booking_detail.html
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,32 @@

<div class="section-title">Requestor</div>
<table class="info-table">
<tr>
<td>Request Number</td>
<td>
<div class="value-content">{{ contents.requestNumber }}</div>
</td>
</tr>
<tr></tr>
<tr>
<td>Rooms</td>
<td>
<div class="value-content">{{ contents.roomId }}</div>
</td>
</tr>
<tr></tr>
<tr>
<td>Start Date</td>
<td>
<div class="value-content">{{ startDate }}</div>
</td>
</tr>
<tr>
<td>End Date</td>
<td>
<div class="value-content">{{ endDate }}</div>
</td>
</tr>
<tr>
<td>NetID / Name</td>
<td>
Expand Down

0 comments on commit eae14ae

Please sign in to comment.