
This commit ports the dashboard fix to new project. Change-Id: Ibfa239b4a487587ff909eac74230fe2449ae4ba6 Partially-Implements: blueprint enahance-congress-dashboard
19 lines
499 B
HTML
19 lines
499 B
HTML
{% load i18n %}
|
|
|
|
<h3>{% trans "Policy Overview" %}</h3>
|
|
|
|
<div class="detail">
|
|
<dl class="dl-horizontal">
|
|
<dt>{% trans "Policy Name" %}</dt>
|
|
<dd>{{ policy.name|default:policy.id }}</dd>
|
|
<dt>{% trans "Policy ID" %}</dt>
|
|
<dd>{{ policy.id }}</dd>
|
|
<dt>{% trans "Description" %}</dt>
|
|
<dd>{{ policy.description }}</dd>
|
|
<dt>{% trans "Kind" %}</dt>
|
|
<dd>{{ policy.kind }}</dd>
|
|
<dt>{% trans "Owner ID" %}</dt>
|
|
<dd>{{ policy.owner_id|default:"-" }}</dd>
|
|
</dl>
|
|
</div>
|