~replaceafill/schooltool.gradebook/flourish_aelkner

« back to all changes in this revision

Viewing changes to src/schooltool/gradebook/browser/templates/f_add_edit_report_card_source.pt

  • Committer: Alan Elkner
  • Date: 2011-08-31 02:21:01 UTC
  • Revision ID: aelkner@gmail.com-20110831022101-g375v68e03o70tf4
forgotĀ templateĀ again

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<form method="post" class="standalone"
 
2
      tal:attributes="action request/getURL">
 
3
  <div class="viewspace">
 
4
    <fieldset>
 
5
      <legend>
 
6
        <span tal:content="view/legend" />
 
7
      </legend>
 
8
 
 
9
      <div class="row">
 
10
        <div class="label">
 
11
          <label for="source">
 
12
            <span tal:content="view/source_label" />
 
13
          </label>
 
14
        </div>
 
15
        <div class="widget">
 
16
          <select id="source" name="source">
 
17
            <tal:block repeat="choice view/source_choices">
 
18
            <option tal:attributes="value choice/value; selected choice/selected"
 
19
                    tal:content="choice/name" />
 
20
            </tal:block>
 
21
          </select>
 
22
        </div>
 
23
      </div>
 
24
 
 
25
      <div class="row">
 
26
        <div class="label">
 
27
          <label for="heading">
 
28
            <span tal:content="view/heading_label" />
 
29
          </label>
 
30
        </div>
 
31
        <div class="widget">
 
32
          <input type="text" id="heading" name="heading"
 
33
                 tal:attributes="value view/heading"/>
 
34
        </div>
 
35
      </div>
 
36
    </fieldset>
 
37
 
 
38
    <div>
 
39
      <div class="buttons">
 
40
        <input type="submit" class="button-ok" name="UPDATE_SUBMIT"
 
41
               value="Submit" i18n:attributes="value" />
 
42
        <tal:block metal:use-macro="view/@@standard_macros/cancel-button" />
 
43
      </div>
 
44
    </div>
 
45
  </div>
 
46
</form>
 
47