blob: 585d231f4821a4eb167a6c74493458d3404afa7a (
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 class="form-horizontal" method="post">
{{ forms.edit_project(form) }}
</form>
{% endblock %}
|