9f72d2fb19
Added new view for browsing through all deployments for all environments in a tenant. Change-Id: I64bce83be69a22e52994b7f51b96f3bdafbc6867 Partially-implements: blueprint improve-deployment-log-browsing Closes-Bug: #1497261 Depends-On: I80c02a8cfd82260f097474bb512f693aa6734655
22 lines
493 B
HTML
22 lines
493 B
HTML
{% load i18n %}
|
|
{% load static %}
|
|
{% load compress %}
|
|
|
|
{% block css %}
|
|
{% compress css %}
|
|
<link rel="stylesheet" href="{% static 'muranodashboard/css/deployments.css' %}">
|
|
{% endcompress %}
|
|
{% endblock %}
|
|
|
|
{% block main %}
|
|
<table class="{% block table_css_classes %}table deployment_history_cell{% endblock %}">
|
|
<thead></thead>
|
|
<tbody>
|
|
{% for name, type in services.items %}
|
|
<tr>
|
|
<td>{{name}} — {{type | linebreaksbr}}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% endblock %} |