blob: e84ad97c91e7b783b01ed88c145ab13bb2fcbaef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{% extends "layout.html" %}
{% block js %}
$('#delete-project').click(function ()
{
$(this).html("<a style='color:red; ' href='{{ url_for('.remove_project') }}' >{{_("you sure?")}}</a>");
});
{% endblock %}
{% block content %}
<h2>{{ _("Edit this project") }}</h2>
<form method="post">
{{ forms.edit_project(form) }}
</form>
{% endblock %}
|