File: /home/mmickelson/trac_theflexguy_com_trac/trac/admin/templates/admin_basics.html
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:xi="http://www.w3.org/2001/XInclude"
xmlns:py="http://genshi.edgewall.org/">
<xi:include href="admin.html" />
<head>
<title>Basics</title>
</head>
<body>
<h2>Basic Settings</h2>
<form class="mod" id="modbasic" method="post" action="">
<fieldset>
<legend>Project</legend>
<div class="field">
<label>Name:<br />
<input type="text" name="name" value="${project.name}" />
</label>
</div>
<div class="field">
<label>URL:<br />
<input type="text" name="url" size="48" value="${project.url}" />
</label>
</div>
<div class="field">
<label>Description:<br />
<textarea name="descr" rows="3" cols="50">
${project.description}</textarea>
</label>
</div>
</fieldset>
<div class="buttons">
<input type="submit" value="Apply changes"/>
</div>
</form>
</body>
</html>