summaryrefslogtreecommitdiff
path: root/kosten/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 %}