~ubuntu-branches/ubuntu/jaunty/trac/jaunty

« back to all changes in this revision

Viewing changes to trac/admin/templates/admin_basics.html

  • Committer: Bazaar Package Importer
  • Author(s): Luis Matos
  • Date: 2008-07-13 23:46:20 UTC
  • mfrom: (1.1.13 upstream)
  • Revision ID: james.westby@ubuntu.com-20080713234620-13ynpdpkbaymfg1z
Tags: 0.11-2
* Re-added python-setup-tools to build dependences. Closes: #490320 #468705
* New upstream release Closes: 489727
* Added sugestion for other vcs support available: git bazaar mercurial 
* Added spamfilter plugin to sugests
* Moved packaging from python-support to python-central
* Added an entry to the NEWS about the cgi Closes: #490275
* Updated 10_remove_trac_suffix_from_title patch to be used in 0.11

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!DOCTYPE html
 
2
    PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
 
3
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
 
4
<html xmlns="http://www.w3.org/1999/xhtml"
 
5
      xmlns:xi="http://www.w3.org/2001/XInclude"
 
6
      xmlns:py="http://genshi.edgewall.org/">
 
7
  <xi:include href="admin.html" />
 
8
  <head>
 
9
    <title>Basics</title>
 
10
  </head>
 
11
 
 
12
  <body>
 
13
    <h2>Basic Settings</h2>
 
14
 
 
15
    <form class="mod" id="modbasic" method="post">
 
16
      <fieldset>
 
17
        <legend>Project</legend>
 
18
        <div class="field">
 
19
          <label>Name:<br />
 
20
            <input type="text" name="name" value="${project.name}" />
 
21
          </label>
 
22
        </div>
 
23
        <div class="field">
 
24
          <label>URL:<br />
 
25
            <input type="text" name="url" size="48" value="${project.url}" />
 
26
          </label>
 
27
        </div>
 
28
        <div class="field">
 
29
          <label>Description:<br />
 
30
            <textarea name="descr" rows="3" cols="50">
 
31
${project.description}</textarea>
 
32
          </label>
 
33
        </div>
 
34
      </fieldset>
 
35
      <div class="buttons">
 
36
        <input type="submit" value="Apply changes"/>
 
37
      </div>
 
38
    </form>
 
39
  </body>
 
40
 
 
41
</html>