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

« back to all changes in this revision

Viewing changes to ivle/webapp/admin/templates/offering-edit.html

  • Committer: William Grant
  • Date: 2010-01-28 04:18:24 UTC
  • mto: This revision was merged to the branch mainline in revision 1454.
  • Revision ID: me@williamgrant.id.au-20100128041824-zp1pseubbiust0ps
Prettify the form.

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
  <body>
7
7
    <h1>Edit ${context.subject.name}</h1>
8
8
    <div id="ivle_padding">
9
 
      <form action="" method="post">
 
9
      <form class="verticalform" action="" method="post">
10
10
        <div>
11
11
          <div>
12
12
            <label for="description">Description:</label>
13
 
            <textarea id="description" name="description"></textarea>
 
13
            <textarea id="description" name="description" cols="80" rows="10"></textarea>
14
14
            <span py:if="'description' in errors" class="form_error">${errors.description}.</span>
15
15
          </div>
16
16
          <div>
18
18
            <input type="text" id="url" name="url" />
19
19
            <span py:if="'url' in errors" class="form_error">${errors.url}.</span>
20
20
          </div>
21
 
          <input type="submit" value="Save Changes" />
 
21
          <div class="submit">
 
22
            <input type="submit" value="Save Changes" />
 
23
          </div>
22
24
        </div>
23
25
      </form>
24
26
    </div>