
Add counts to index pages for Nodes, Images and Roles. Change-Id: I8b52fe05fb9fc3dac9675cdddf8cc9750aa55ee8
19 lines
521 B
HTML
19 lines
521 B
HTML
{% extends 'infrastructure/base.html' %}
|
|
{% load i18n %}
|
|
{% block title %}{% trans 'Deployment Roles' %}{% endblock %}
|
|
|
|
{% block page_header %}
|
|
{% include 'horizon/common/_items_count_domain_page_header.html' with title=_('Deployment Roles') %}
|
|
{% endblock page_header %}
|
|
|
|
{% block main %}
|
|
<div class="row">
|
|
<div class="col-xs-12">
|
|
<div class="no-table-title"> {% comment %}This will likely move to the tables Meta in the future{% endcomment %}
|
|
{{ table.render }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|