Changeset 9643 for main/waeup.kofa/trunk


Ignore:
Timestamp:
16 Nov 2012, 00:07:29 (12 years ago)
Author:
uli
Message:

Untabify page templates.

Location:
main/waeup.kofa/trunk/src/waeup/kofa
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.kofa/trunk/src/waeup/kofa/browser/templates/reportscontainercreate.pt

    r9641 r9643  
    11<form  i18n:domain="waeup.kofa"  method="POST">
    22  <p i18n:translate="">
    3     Here you can create reports representing portal data.
    4     Please pick the type of report you want to create from the
    5     selection below.
    6     Afterwards you can configure the report (do the settings).
    7     The report data will be calculated and then made available
    8     for you to view/download.
     3    Here you can create reports representing portal data.  Please pick
     4    the type of report you want to create from the selection below.
     5    Afterwards you can configure the report (do the settings).  The
     6    report data will be calculated and then made available for you to
     7    view/download.
    98  </p>
    109  <br />
     
    1413      <select name="generator">
    1514        <span tal:repeat="items view/creators" tal:omit-tag="">
    16       <option
    17           tal:define="name python: items[1]; title python: items[0]"
    18           tal:attributes="value name">
    19         <span tal:replace="title">TITLE</span>
    20       </option>
     15          <option
     16              tal:define="name python: items[1]; title python: items[0]"
     17              tal:attributes="value name">
     18            <span tal:replace="title">TITLE</span>
     19          </option>
    2120        </span>
    2221      </select>
     
    2827  <div class="input">
    2928    <input i18n:translate="" type="submit" class="btn primary"
    30        name="START_GENERATOR" value="Configure" />
     29           name="START_GENERATOR" value="Configure" />
    3130    <a class="btn secondary" href=""
    3231       tal:attributes="href python:view.url(context)">Cancel</a>
  • main/waeup.kofa/trunk/src/waeup/kofa/browser/templates/reportscontainerpage.pt

    r9641 r9643  
    11<form method="POST" i18n:domain="waeup.kofa">
    22  <table>
    3   <thead>
    4         <tr>
    5           <th i18n:translate="">Report Number</th>
    6     <th i18n:translate="">Description</th>
    7     <th i18n:translate="">Status</th>
    8     <th>&nbsp;</th>
    9         </tr>
    10   </thead>
     3    <thead>
     4      <tr>
     5        <th i18n:translate="">Report Number</th>
     6        <th i18n:translate="">Description</th>
     7        <th i18n:translate="">Status</th>
     8        <th>&nbsp;</th>
     9      </tr>
     10    </thead>
    1111    <tbody>
    1212      <tr tal:repeat="entry view/entries">
     
    2222        <td>
    2323          <form method="POST">
    24           <input type="hidden" name="job_id"
    25                  tal:attributes="value python: entry[0]" />
    26           <input type="submit" class="btn secondary"
    27                  name="DISCARD" value="Discard"
    28                  tal:condition="python: entry[3]" />
    29           <input type="submit" class="btn primary"
    30                  name="DOWNLOAD" value="Download"
    31                  tal:condition="python: entry[4]" />
     24            <input type="hidden" name="job_id"
     25                   tal:attributes="value python: entry[0]" />
     26            <input type="submit" class="btn secondary"
     27                   name="DISCARD" value="Discard"
     28                   tal:condition="python: entry[3]" />
     29            <input type="submit" class="btn primary"
     30                   name="DOWNLOAD" value="Download"
     31                   tal:condition="python: entry[4]" />
    3232          </form>
    3333        </td>
  • main/waeup.kofa/trunk/src/waeup/kofa/students/browser_templates/studentreportgeneratorpage.pt

    r9641 r9643  
    11<form  i18n:domain="waeup.kofa"  method="POST">
    22  <p i18n:translate="">
    3     Please pick the session for which the report should be
    4     generated.
    5     The report data will be calculated and then made available
    6     for you to view/download.
     3    Please pick the session for which the report should be generated.
     4    The report data will be calculated and then made available for you
     5    to view/download.
    76  </p>
    87  <br />
     
    1211      <select name="session">
    1312        <span tal:repeat="items view/sessions" tal:omit-tag="">
    14         <option
    15             tal:define="name python: items[1]; title python: items[0]"
    16             tal:attributes="value name">
    17           <span tal:replace="title">TITLE</span>
    18         </option>
     13          <option
     14              tal:define="name python: items[1]; title python: items[0]"
     15              tal:attributes="value name">
     16            <span tal:replace="title">TITLE</span>
     17          </option>
    1918        </span>
    2019      </select>
     
    2625  <div class="input">
    2726    <input i18n:translate="" type="submit" class="btn primary"
    28      name="CREATE" value="Create" />
     27           name="CREATE" value="Create" />
    2928    <a class="btn secondary" href=""
    3029       tal:attributes="href view/parent_url">Cancel</a>
    3130  </div>
    3231</form>
    33 
Note: See TracChangeset for help on using the changeset viewer.