diff options
author | maxbr <maxbr@mi.fu-berlin.de> | 2017-01-05 12:38:00 +0100 |
---|---|---|
committer | maxbr <maxbr@mi.fu-berlin.de> | 2017-01-05 12:38:00 +0100 |
commit | 6a821ea00a481bd77a8522f8b7145b8d7ce35d7f (patch) | |
tree | f0be8509e8488e3a687078078d0948f13c2522b4 /pharos-dashboard/src/templates/dashboard | |
parent | 29a4b8697e4a7960931528142d7778383810b91e (diff) |
Add booking communication reference implementation
JIRA: PHAROS-265
This adds an implementation of a booking communication agent that
listens for booking notifications from the dashboard and updates the pod
status in the dashboard.
Change-Id: I1ea22390a46182a185df9c5e1771c9312d462092
Signed-off-by: maxbr <maxbr@mi.fu-berlin.de>
Diffstat (limited to 'pharos-dashboard/src/templates/dashboard')
-rw-r--r-- | pharos-dashboard/src/templates/dashboard/resource_detail.html | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/pharos-dashboard/src/templates/dashboard/resource_detail.html b/pharos-dashboard/src/templates/dashboard/resource_detail.html index e0b29bd..740dd25 100644 --- a/pharos-dashboard/src/templates/dashboard/resource_detail.html +++ b/pharos-dashboard/src/templates/dashboard/resource_detail.html @@ -26,6 +26,26 @@ </div> </div> </div> + + <div class="col-lg-9"> + <div class="panel panel-default"> + <div class="panel-heading"> + Status + </div> + <div class="panel-body"> + <div class="list-group pre-scrollable"> + {% for status in resource.resourcestatus_set.all %} + <a href="#" class="list-group-item"> + <i class="fa fa-info fa-fw"></i> {{ status.title }} + <span class="pull-right text-muted small"> + <em>{{ status.timestamp }}</em> + </span> + </a> + {% endfor %} + </div> + </div> + </div> + </div> <div class="col-lg-9"> <div class="panel panel-default"> <div class="panel-heading"> @@ -182,4 +202,4 @@ </div> </div> </div> -</div>
\ No newline at end of file +</div> |