murano-dashboard/muranodashboard/templates/deployments/_logs.html

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>