The dashboard plugin currently does not support the option to create a new languagepack. This patch adds this option to the dashboard plugin. Also, here is a link to a screenchot of what the form for creation looks like: http://pasteboard.co/4hlr2GO3z.png, and what the page after creation of the languagepack looks like: http://pasteboard.co/I0HuPcLh.png Change-Id: I3c53ae0cdfcbd4bb8f99d9003ccfebc5b3e5c7ee Closes-Bug: #1602874
13 lines
286 B
HTML
13 lines
286 B
HTML
{% extends "horizon/common/_modal_form.html" %}
|
|
{% load i18n %}
|
|
|
|
{% block form_attrs %}enctype="multipart/form-data"{% endblock %}
|
|
|
|
|
|
{% block modal-body-right %}
|
|
<h3>{% trans "Description:" %}</h3>
|
|
<p>
|
|
{% trans "Enter the details for the languagepack." %}
|
|
</p>
|
|
{% endblock %}
|