remove obsolete and unused templates

This commit is contained in:
Frédéric Péters 2016-07-15 19:41:42 +02:00
parent 66428d4f32
commit 06d7f0b9b6
5 changed files with 0 additions and 46 deletions

View File

@ -1,5 +0,0 @@
{% for child in children %}
<li class="footer-menu-leaf">
<a class="footer-menu-leaf-link" href="{{ child.attr.redirect_url }}">{{ child.get_menu_title }}</a>
</li>
{% endfor %}

View File

@ -1,11 +0,0 @@
{% load menu_tags %}
{% for child in children %}
<li id="top-menu-{{ child.get_menu_title|slugify }}" class="{% if child.selected %}selected{% endif %}{% if child.ancestor %}ancestor{% endif %}{% if child.sibling %}sibling{% endif %}{% if child.descendant %}descendant{% endif %}{% if child.children %} has-children{% endif %}">
<a href="{{ child.attr.redirect_url|default:child.get_absolute_url }}">{{ child.get_menu_title }}</a>
{% if child.children %}
<ul>
{% show_menu from_level to_level extra_inactive extra_active template "" "" child %}
</ul>
{% endif %}
</li>
{% endfor %}

View File

@ -1,11 +0,0 @@
{% load i18n %}
<form method="post" action="." class="{% if form.non_field_errors %}form-with-errors {% endif %}">
{% csrf_token %}
{% include "form_fields.html" with form=form %}
<input type="submit" {% if submit_name %}name="{{ submit_name }}"{% endif %}
value="{% if submit_value %}{{ submit_value }}{% else %}{% trans 'Submit' %}{% endif %}" />
{% if not no_cancel_button %}
<button type="button" onclick="location.href = '/'">{% trans "Back" %}</button>
{% endif %}
</form>

View File

@ -1,11 +0,0 @@
{{ form.non_field_errors }}
{% for field in form %}
<div id="id_{{ field.html_name }}_wrap" class="{% if field.field.required %} form-field-required{% endif %}{% if field.errors %} form-field-error{% endif %}">
{{ field.errors }}
<label for="id_{{ field.html_name }}">{{ field.label }}&nbsp;:</label>
{{ field }}
{% if field.help_text %}
<p id="id_{{ field.html_name }}_help_text" class="help-text">{{ field.help_text }}</p>
{% endif %}
</div>
{% endfor %}

View File

@ -1,8 +0,0 @@
{% extends "gadjo/root.html" %}
{% block extrascripts %}
{% if manager_homepage_url %}
<script src="{{manager_homepage_url}}__services.js"></script>
<script src="{{manager_homepage_url}}static/js/publik.js"></script>
{% endif %}
{% endblock %}