9d6ce50864
This prevents failure after upgrading to Django 1.9 and reduces spam in logs. Change-Id: I2d472413b7073a01affebbc99482726672f37b60 Closes-Bug: #1499661
41 lines
1.3 KiB
HTML
41 lines
1.3 KiB
HTML
{% extends 'murano_base.html' %}
|
|
{% load i18n sizeformat %}
|
|
{% load static %}
|
|
{% load compress %}
|
|
{% block title %}{% trans "Application Details" %}: {{ app.name }}{% endblock %}
|
|
|
|
{% block css %}
|
|
{{ block.super }}
|
|
{% compress css %}
|
|
<link rel="stylesheet" href="{% static 'muranodashboard/css/catalog.css' %}">
|
|
<link rel="stylesheet" href="{% static 'horizon/lib/font-awesome/css/font-awesome.min.css' %}">
|
|
{% endcompress %}
|
|
{% endblock %}
|
|
|
|
{% block page_header %}
|
|
{% include "catalog/_details_page_header.html" with name=app.name %}
|
|
{% endblock page_header %}
|
|
|
|
{% block main %}
|
|
<div class="table_wrapper">
|
|
<div class="row">
|
|
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
|
|
<div class="btn-group pull-right">
|
|
{% with class='btn btn-default btn-sm btn-add ajax-modal' %}
|
|
{% include 'catalog/add_app.html' %}
|
|
{% endwith %}
|
|
{% with class='btn btn-default btn-sm btn-add ajax-modal' %}
|
|
{% include 'catalog/quick_deploy.html' %}
|
|
{% endwith %}
|
|
</div>
|
|
<div class="clearfix">
|
|
<div class="app-icon pull-left">
|
|
<img src="{% url 'horizon:murano:catalog:images' app.id %}" />
|
|
</div>
|
|
</div>
|
|
{{ tab_group.render }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|