1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:py="http://genshi.edgewall.org/">
<head>
<title>Delete project ${project.name} from ${project.project_set.offering.subject.name}</title>
</head>
<body>
<h1>Delete project ${project.name} from ${project.project_set.offering.subject.name}</h1>
<div id="ivle_padding">
<form action="" method="post" class="verticalform">
<div><label for="field_name">Display name:</label> <span id="field_name">${project.name}</span></div>
<div><label for="field_short_name">URL name:</label> <span id="field_short_name">${project.short_name}</span></div>
<div class="submit">Are you sure you want to delete this project?</div>
<div class="submit"><input type="submit" value="Delete"/></div>
</form>
</div>
</body>
</html>
|