Remove some obsolete templates

Change-Id: I298bd67615b661a4237147c9773d187797827319
This commit is contained in:
Timur Sufiev 2014-04-23 17:18:20 +04:00
parent 3269374769
commit cc0e43c719
5 changed files with 0 additions and 65 deletions

View File

@ -1,13 +0,0 @@
{% load i18n %}
{% load url from future %}
<h3>{% trans "Service Details" %}</h3>
<div class="info detail">
<dl>
{% for key, value in service_info.items %}
<dt>{% blocktrans %} {{ key }} {% endblocktrans %}</dt>
<dd>{% blocktrans %} {{ value }} {% endblocktrans %}</dd>
<br>
{% endfor %}
</dl>
</div>

View File

@ -1,28 +0,0 @@
{% load custom_filters %}
{% for hidden in form.hidden_fields %}
{{ hidden }}
{% endfor %}
{% if form.non_field_errors %}
<div class="alert alert-message alert-error">
{{ form.non_field_errors }}
</div>
{% endif %}
{% for field in form.visible_fields %}
<div class="control-group form-field clearfix{% if field.errors %} error{% endif %}">
{% if field|is_checkbox %}
{{ field }}{{ field.label_tag }}
{% else %}
{{ field.label_tag }}
{% if field.errors %}
{% for error in field.errors %}
<span class="help-inline">{{ error }}</span>
{% endfor %}
{% endif %}
<span class="help-block">{{ field.help_text }}</span>
<div class="input">
{{ field }}
</div>
{% endif %}
</div>
{% endfor %}

View File

@ -1,8 +0,0 @@
{% load i18n %}
<p>{% blocktrans %}<strong>Service Name:</strong> is a human-readable service name
{% endblocktrans %}</p>
<p>{% blocktrans %}<strong>Fully Qualified Service Name:</strong> is an internal service name. It should be unique and can contain only alphanumeric symbols and dots{% endblocktrans %}</p>
<p>{% blocktrans %}<strong>Author:</strong> is a company or person name{% endblocktrans %}</p>
<p>{% blocktrans %}<strong>Active:</strong> whether this service should be visible for users or not.{% endblocktrans %}</p>
<p>{% blocktrans %}<strong>Description:</strong> add text information about service. It will appear in service creation form in the Environments panel.{% endblocktrans %}</p>
<p>{% blocktrans %}<strong>Version:</strong> is a service version. Will increment automatically{% endblocktrans %}</p>

View File

@ -1,14 +0,0 @@
<noscript><h3>{{ step }}</h3></noscript>
<table class="table-fixed">
<tbody>
<tr>
<td class="actions">
{% include "packages/_form_fields_simple.html" %}
</td>
<td class="help_text">
{{ step.get_help_text }}
</td>
</tr>
</tbody>
</table>
{{ step.media }}

View File

@ -1,2 +0,0 @@
<noscript><h3>{{ step }}</h3></noscript>
{% include "horizon/common/_form_fields.html" %}