~azzar1/unity/add-show-desktop-key

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:py="http://genshi.edgewall.org/">
  <head>
    <title>Edit - ${context.subject.name}</title>
  </head>
  <body>
    <h1>Edit ${context.subject.name}</h1>
    <div id="ivle_padding">
      <form class="verticalform" action="" method="post">
        <div>
          <div>
            <label for="description">Description:</label>
            <textarea id="description" name="description" cols="80" rows="10"></textarea>
            <span py:if="'description' in errors" class="form_error">${errors.description}.</span>
          </div>
          <div>
            <label for="url">Home page URL:</label>
            <input type="text" id="url" name="url" />
            <span py:if="'url' in errors" class="form_error">${errors.url}.</span>
          </div>
          <div class="submit">
            <input type="submit" value="Save Changes" />
          </div>
        </div>
      </form>
    </div>
  </body>
</html>