python-muranoclient/tabula/tabula/templates/service_details.html

16 lines
384 B
HTML

{% extends 'base.html' %}
{% load i18n sizeformat %}
{% block title %}{% trans "Service Detail" %}{% endblock %}
{% block page_header %}
{% include "horizon/common/_page_header.html" with title="Service Detail: "|add:service.name %}
{% endblock page_header %}
{% block main %}
<div class="row-fluid">
<div class="span12">
{{ tab_group.render }}
</div>
</div>
{% endblock %}