
While current package name "disaster_recovery" is a valid slug inside of the Horizon, when it comes to the Python package naming, it is not conforming with Horizon Dashboard naming pattern, where all existing dashboard packages end their names on `dashboard` or `ui`. Current naming might break Horizon installation logic by some common deployment tools, like OpenStack-Ansible. To prevent that we rename the package given the opportunity, that project is currently in Inactive state and major changes can be made to it. Change-Id: I965b545b6aada866ab5c6eb2279154b70bc5dff1
15 lines
856 B
HTML
15 lines
856 B
HTML
{% load i18n horizon humanize %}
|
|
|
|
{% block help_message %}
|
|
<h4>{% blocktrans trimmed %}Job{% endblocktrans %}</h4>
|
|
<p>{% blocktrans trimmed %}Describes actions to be executed by a client.{% endblocktrans %}</p>
|
|
<p>{% blocktrans trimmed %}Job executions can be executed and scheduled, by providing the following settings.{% endblocktrans %}</p>
|
|
|
|
<link rel="stylesheet" href="{{ STATIC_URL }}freezer/css/bootstrap-datetimepicker.min.css">
|
|
<script type='text/javascript' src='{{ STATIC_URL }}freezer/js/vendor/moment.js'></script>
|
|
<script type='text/javascript' src='{{ STATIC_URL }}freezer/js/vendor/bootstrap-datetimepicker.js'></script>
|
|
<script type='text/javascript' src='{{ STATIC_URL }}freezer/js/freezer.datetimepicker.js'></script>
|
|
<script type='text/javascript' src='{{ STATIC_URL }}freezer/js/freezer.jobs.create.infos.js'></script>
|
|
|
|
{% endblock %}
|