12 lines
320 B
HTML
12 lines
320 B
HTML
{% extends 'base.html' %}
|
|
{% load i18n %}
|
|
{% block title %}{% trans "Update Instance" %}{% endblock %}
|
|
|
|
{% block page_header %}
|
|
{% include "horizon/common/_page_header.html" with title=_("Update Instance") %}
|
|
{% endblock page_header %}
|
|
|
|
{% block main %}
|
|
{% include 'project/instances/_update.html' %}
|
|
{% endblock %}
|