source: traclegosscript/anyrelease/traclegos/templates/project-variables.html

Last change on this file was 4216, checked in by Jeff Hammel, 15 years ago

initial commit of TracLegos at trac-hacks, moved from https://svn.openplans.org/svn/trac/install/TracLegos

File size: 771 bytes
Line 
1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2<html xmlns="http://www.w3.org/1999/xhtml"
3      xmlns:py="http://genshi.edgewall.org/"
4      xmlns:xi="http://www.w3.org/2001/XInclude">
5<head>
6<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15"/>
7<title>Project Variables: $project</title>
8</head>
9
10<body>
11<h1>Project Variables: $project</h1>
12
13<form method="post" enctype="multipart/form-data">
14
15<div py:for="option in options">
16  <h3>${option.name}:
17    <input type="text" name="${option.name}" value="${option.default}"/>
18  </h3>
19${option.description}
20</div>
21
22<input type="hidden" name="project" value="$project"/>
23
24<input type="submit" value="Create Project"/><br/>
25
26</form>
27</body>
28</html>
Note: See TracBrowser for help on using the repository browser.