src/p4l/templates/admin/index.html
author ymh <ymh.work@gmail.com>
Fri, 11 Oct 2013 13:02:51 +0200
changeset 146 3d20cdc9be3d
parent 145 7c6fe1dab213
permissions -rw-r--r--
Change notice list order on a search to the order returned by the indexation engine. Fix #5 (https://github.com/IRI-Research/plan4learning/issues/5)

{% extends "admin:admin/index.html" %}
{% load i18n %}

{% block content %}
<div style="float: left;">
{{ block.super }}
<div id="content-other">
    <div class="module">
        <table>
            <caption>{% trans 'Commands' %}</caption>
            <tr>
                <th scope="row">{% trans 'Launch Script' %}</th>
                <td><a href="{% url 'admin:confirm_script' %}" class="addlink">{% trans 'Launch' %}</a></td>
            </tr>
        </table>
    </div>
</div>
</div>
{% endblock %}