1532
by William Grant
Add subject creation/editing UI. Not linked just yet. |
1 |
<html xmlns="http://www.w3.org/1999/xhtml" |
2 |
xmlns:xi="http://www.w3.org/2001/XInclude" |
|
3 |
xmlns:py="http://genshi.edgewall.org/" py:strip=""> |
|
4 |
<body py:strip=""> |
|
1591
by William Grant
Add warnings about moving/renaming subjects and offerings. |
5 |
<p class="form_error"> |
6 |
<strong>Warning:</strong> Changing the URL name <em>will break</em> |
|
7 |
any existing Subversion repositories or checkouts associated with |
|
8 |
this subject's offerings. Be very careful. |
|
9 |
</p> |
|
1534
by William Grant
A thin verticalform is too thin for some browsers. |
10 |
<form class="verticalform" method="post" action=""> |
1532
by William Grant
Add subject creation/editing UI. Not linked just yet. |
11 |
<div>
|
12 |
<label for="field_name">Display name:</label> |
|
13 |
<input type="text" id="field_name" name="name" /> |
|
14 |
<span py:if="'name' in errors" class="form_error">${errors.name}</span> |
|
15 |
</div> |
|
16 |
<div>
|
|
17 |
<label for="field_short_name">URL name:</label> |
|
18 |
<input type="text" id="field_short_name" name="short_name" /> |
|
19 |
<span py:if="'short_name' in errors" class="form_error">${errors.short_name}</span> |
|
20 |
</div> |
|
21 |
<div>
|
|
22 |
<label for="field_code">Code:</label> |
|
23 |
<input type="text" id="field_code" name="code" /> |
|
24 |
<span py:if="'code' in errors" class="form_error">${errors.code}</span> |
|
25 |
</div> |
|
26 |
<div class="submit"> |
|
27 |
<input type="submit" value="${submit_button_label}" /> |
|
28 |
</div> |
|
29 |
</form> |
|
30 |
</body> |
|
31 |
</html> |