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

Last change on this file was 7152, checked in by Jeff Hammel, 14 years ago

fine-tuning project creation process

File size: 1.5 KB
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>create trac project</title>
8</head>
9
10<body>
11<h1>create a trac project</h1>
12
13<xi:include href="errors.html" />
14
15<form method="post" enctype="multipart/form-data">
16
17<div>
18  <b>Project Name:</b> <input type="text" name="project_name"/><br/>
19  <b>URL:</b> ${URL}<input type="text" name="project" /><br/>
20  <b>Alternate website:</b> <input type="text" name="alternate_url"/> <i>(Optional)</i>
21</div>
22
23<div>
24  <p>
25  <i>(Optional)</i>
26  Enter the full filesystem path or absolute URL of the project logo
27  </p>
28  <center>
29  <input type="text" name="logo"/>
30  </center>
31  <p>or upload one</p>
32  <center>
33  <input type="file" name="logo_file"/>
34  </center>
35</div>
36
37<!-- project type -->
38<div py:if="len(projects) &gt; 1">
39  <b>Project Type:</b>
40  <select name="project_type">
41    <option py:for="project_type in projects" value="${project_type}">
42      ${project_type}
43      </option>
44  </select> 
45</div>
46<input type="hidden" py:if="len(projects) == 1" name="project_type" value="${projects[0]}"/>
47
48<!--
49<div>
50  <b>Trac Admins:</b> <input type="text" name="trac_admins" alt="comma or space separated"/>
51</div>
52-->
53
54<input type="submit" value="Next &gt;&gt;"/>
55</form>
56
57</body>
58</html>
Note: See TracBrowser for help on using the repository browser.