~ubuntu-branches/ubuntu/trusty/horizon/trusty-proposed

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{% extends 'base.html' %}
{% load i18n %}

{% block title %}{% trans "Image Details"%}{% endblock %}

{% block page_header %}
  {% include "horizon/common/_page_header.html" with title=_("Image Details: ")|add:image.name|default:_("Image Details:") %}
{% endblock page_header %}

{% block main %}
<div class="row-fluid">
  <div class="span12">
  {{ tab_group.render }}
  </div>
</div>
{% endblock %}