
Patch https://review.openstack.org/#/c/142802 adds a method of reducing duplication of page title logic, this patch applies that change to the project images, instances, and overview views. Change-Id: I53b4ea3d20add1e5a5ba830535b81ae96bf0e554 Partial-Bug: 1413749
8 lines
189 B
HTML
8 lines
189 B
HTML
{% extends 'base.html' %}
|
|
{% load i18n %}
|
|
{% block title %}{% trans "Create An Image" %}{% endblock %}
|
|
|
|
{% block main %}
|
|
{% include 'project/images/images/_create.html' %}
|
|
{% endblock %}
|