9d6ce50864
This prevents failure after upgrading to Django 1.9 and reduces spam in logs. Change-Id: I2d472413b7073a01affebbc99482726672f37b60 Closes-Bug: #1499661
14 lines
378 B
HTML
14 lines
378 B
HTML
{% extends 'horizon/common/_modal_form.html' %}
|
|
{% load i18n %}
|
|
|
|
{% block modal-body-right %}
|
|
<h3>{% trans 'Description:' %}</h3>
|
|
<p>{% trans 'Add new category to the application catalog. ' %}</p>
|
|
<p>
|
|
<strong>{% trans 'Name' %}:</strong>
|
|
{% blocktrans %}Provide desired name for a new
|
|
category{% endblocktrans %}
|
|
</p>
|
|
|
|
{% endblock %}
|