murano-dashboard/muranodashboard/templates/deployments/_logs.html
Kirill Zaitsev 85765e8ddc Compress murano-dashboard css
This commit gathers murano-related css files, into css section and
compresses them for better space and performance.
Removes no longer required css from modal forms.

Change-Id: Iaeeec20bd9c6b89e46fb65f4da2e67038acef849
Closes-Bug: #1358233
2015-09-24 18:12:16 +03:00

11 lines
335 B
HTML

{% load i18n static %}
<div class="clearfix">
<h3 class="table-title">{% trans "Deployment Logs" %}</h3>
</div>
<div class="reports logs">
{% for report in reports %}
<div title="{{report.level|capfirst}}" class="report-{{report.level}}">{{report.created}} &mdash; {{report.text | urlize}}</div>
{% endfor %}
</div>