summaryrefslogtreecommitdiff
path: root/templates/categories/manage.jinja
blob: 7125c53773a3aaef4c5043f2ea491ffb34dbe34b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{% extends "layout.jinja" %}

{% block heading %} Kategorien {% endblock %}

{% set JSFunction = "catsJS" %}

{% block content %}
    <form name="categories" method="post">
        <ul class="arrow">
            {% for c in cats %}
                <li><span>{{c.name}}</span><input name="{{c.id}}" type="text" value="{{c.name}}" style="display:none;"></li> 
            {%- endfor %}
            <div><img id="add" src="{{ "images/add.png" | static_url }}"></div>
        </ul>
        <input type="submit">
    </form>
    <input id="new" name="n-" style="display:none;" >
{% endblock %}
-07-13new fancier log outputnecoro14-127/+116 2007-07-11added SIGSTOP/SIGCONT support; SIGTERM now works ;)necoro8-208/+275 2007-07-09bug in shutdown pluginnecoro2-5/+12 2007-07-09added resume_loop pluginnecoro1-1/+1 2007-07-09added resume_loop pluginnecoro10-22/+162 2007-07-07some more documentationnecoro6-4/+108 2007-07-07Some documentation worknecoro7-18/+129