diff options
author | Trevor Bramwell <tbramwell@linuxfoundation.org> | 2018-10-31 21:33:07 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2018-10-31 21:33:07 +0000 |
commit | f05d748b932486adac4074cf56780a55de9e6e99 (patch) | |
tree | b2f9db82acd93dc0f0b5f7d05c16bb79a69b5709 /src | |
parent | 7aeda06e6bfd416ac349e16ad4e55f6ebec47d5c (diff) | |
parent | cb49490a89e23b19e052061bdf528c1e7816a7df (diff) |
Merge "Fix Booking List"
Diffstat (limited to 'src')
-rw-r--r-- | src/templates/booking/booking_table.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/templates/booking/booking_table.html b/src/templates/booking/booking_table.html index af2248c..5e82645 100644 --- a/src/templates/booking/booking_table.html +++ b/src/templates/booking/booking_table.html @@ -3,7 +3,7 @@ <thead> <tr> - <th>User</th> + <th>Owner</th> <th>Purpose</th> <th>Start</th> <th>End</th> @@ -16,7 +16,7 @@ {% for booking in bookings %} <tr> <td> - {{ booking.user.username }} + {{ booking.owner.username }} </td> <td> {{ booking.purpose }} |