diff options
author | Sawyer Bergeron <sbergeron@iol.unh.edu> | 2021-03-23 18:34:16 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2021-03-23 18:34:16 +0000 |
commit | b14e617edb86628f31648847c0b96206764ef44c (patch) | |
tree | d3902fc8bf7b341b2d7f6c2530a410524c85ba64 /src/templates/lfedge/booking/booking_table.html | |
parent | 13cdfee5d9656c2195bb6238d33d66cb637c22e4 (diff) | |
parent | babedf30038b453ea7d123c9bb744f4acb14e625 (diff) |
Merge "Added LF Edge template overrides."
Diffstat (limited to 'src/templates/lfedge/booking/booking_table.html')
-rw-r--r-- | src/templates/lfedge/booking/booking_table.html | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/src/templates/lfedge/booking/booking_table.html b/src/templates/lfedge/booking/booking_table.html new file mode 100644 index 0000000..4afb4d2 --- /dev/null +++ b/src/templates/lfedge/booking/booking_table.html @@ -0,0 +1,41 @@ +{% load jira_filters %} + + +<thead> +<tr> + <th>Owner</th> + <th>Purpose</th> + <th>Project</th> + <th>Start</th> + <th>End</th> + <th>Operating System</th> + <th>Pod</th> +</tr> +</thead> +<tbody> +{% for booking in bookings %} + <tr> + <td> + {{ booking.owner.username }} + </td> + <td> + {{ booking.purpose }} + </td> + <td> + {{ booking.project }} + </td> + <td> + {{ booking.start }} + </td> + <td> + {{ booking.end }} + </td> + <td> + {{ booking.resource.get_head_node.config.image.os.name }} + </td> + <td> + {{ booking.resource.get_template_name }} + </td> + </tr> +{% endfor %} +</tbody> |