aboutsummaryrefslogtreecommitdiff
path: root/ihatemoney/templates/edit_project.html
blob: dcbbbc867fc4f5632c586f2dc206bb4ad685a239 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{% extends "layout.html" %}

{% block js %}
    $('#delete-project').click(function ()
    {
        $(this).html("<a style='color:red; ' href='{{ url_for('.delete_project') }}' >{{_("you sure?")}}</a>");
    });
{% endblock %}

{% block content %}
<h2>{{ _("Edit project") }}</h2>
<p>
    <form class="form-horizontal" method="post">
    {{ forms.edit_project(edit_form) }}
    </form>
</p>

<h2>{{ _("Download project's data") }}</h2>
<p>
    <div class="list-group download-project">
        <div class="list-group-item list-group-item-action">
            <h5 class="d-flex w-100 justify-content-between">
                <span class="mb-1">{{ _('Bill items') }}</span>
                <span>
                    <a href="{{ url_for('.export_project', file='bills', format='json') }}" download class="badge badge-secondary">
                        <i class="icon plus">{{ static_include("images/file-alt.svg") | safe }}</i>
                        JSON
                    </a>
                    <a href="{{ url_for('.export_project', file='bills', format='csv') }}" download class="badge badge-secondary">
                        <i class="icon plus">{{ static_include("images/file-csv-solid.svg") | safe }}</i>
                        CSV
                    </a>
                </span>
            </h5>
        <p class="mb-1 text-muted">{{ _('Download the list of bills with owner, amount, reason,... ') }}</p>
        </div>
        <div class="list-group-item list-group-item-action">
            <h5 class="d-flex w-100 justify-content-between">
                <span class="mb-1">{{ _('Settle plans') }}</span>
                <span>
                    <a href="{{ url_for('.export_project', file='transactions', format='json') }}" download class="badge badge-secondary">
                        <i class="icon plus">{{ static_include("images/file-alt.svg") | safe }}</i>
                        JSON
                    </a>
                    <a href="{{ url_for('.export_project', file='transactions', format='csv') }}" download class="badge badge-secondary">
                        <i class="icon plus">{{ static_include("images/file-csv-solid.svg") | safe }}</i>
                        CSV
                    </a>
                </span>
            </h5>
            <p class="mb-1 text-muted">{{ _('Download the list of transactions needed to settle the current bills.') }}</p>
        </div>
    </div>
</p>
{% endblock %}