Ignore:
Timestamp:
23 Jan 2020, 21:13:14 (5 years ago)
Author:
Henrik Bettermann
Message:

Adjust to base package.

Location:
main/waeup.aaue/trunk/src/waeup/aaue/applicants/browser_templates
Files:
1 deleted
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.aaue/trunk/src/waeup/aaue/applicants/browser_templates/applicanteditpage.pt

    r15735 r15948  
    33      autocomplete="off">
    44
    5   <h2 i18n:domain="waeup.kofa">
     5  <h2 i18n:domain="waeup.kofa" tal:condition="context/translated_state">
    66    ...
    77    <span tal:replace="context/translated_state">APPLICATIONSTATE
     
    1313  </h2>
    1414
    15   <div class="workflow">
     15  <div class="workflow" tal:condition="context/history">
    1616    <div tal:repeat="msg context/history/messages">
    1717      <span tal:replace="msg">MESSAGE</span><br />
     
    4343          <span tal:replace="view/max_upload_size">10 KB</span>
    4444      </tr>
    45       <tr tal:condition="python: view.target in ('trans', 'cert')">
    46         <td class="fieldname" i18n:translate="">
    47           Statement of Result:
    48         </td>
    49         <td>
    50           <p tal:condition="python: view.file_exists('stateresult.pdf')">
    51             <a href="stateresult.pdf"
    52                i18n:translate="">
    53               Download pdf file
    54             </a>
    55           </p>
    56           <div class="input-group half">
    57             <div class="input-group-btn">
    58               <div class="btn btn-default btn-file">
    59                 Select&hellip;
    60               <input type="file" name="form.stateresult" />
     45
     46      <tal:files>
     47        <tr tal:repeat="filename view/additional_files">
     48          <tal:cond tal:condition="python:view.display_fileupload(filename)">
     49            <td class="fieldname">
     50              <span tal:replace="python:filename[0]">FILENAME</span>:
     51            </td>
     52            <td>
     53              <p tal:condition="python:view.file_exists(filename[1])">
     54                <a tal:attributes="href python:filename[1]"i18n:translate="">
     55                  Download pdf file
     56                </a>
     57              </p>
     58              <div class="input-group half">
     59                <div class="input-group-btn">
     60                  <div class="btn btn-default btn-file">
     61                    Select&hellip;
     62                  <input type="file" tal:attributes="name python:filename[1]" />
     63                  </div>
     64                </div>
     65                <input type="text" class="form-control" readonly>
    6166              </div>
    62             </div>
    63             <input type="text" class="form-control" readonly>
    64           </div>
    65           <span i18n:translate="">
    66             PDF files only. Max. file size:
    67           </span>
    68           <span tal:replace="view/max_file_upload_size">10 KB</span>
    69       </tr>
    70       <tr tal:condition="python: view.target in ('ver', 'send')">
    71         <td class="fieldname" i18n:translate="">
    72           Scanned Document:
    73         </td>
    74         <td>
    75           <p tal:condition="python: view.file_exists('verificationdoc.pdf')">
    76             <a href="verificationdoc.pdf"
    77                i18n:translate="">
    78               Download pdf file
    79             </a>
    80           </p>
    81           <div class="input-group half">
    82             <div class="input-group-btn">
    83               <div class="btn btn-default btn-file">
    84                 Select&hellip;
    85               <input type="file" name="form.verificationdoc" />
    86               </div>
    87             </div>
    88             <input type="text" class="form-control" readonly>
    89           </div>
    90           <span i18n:translate="">
    91             PDF files only. Max. file size:
    92           </span>
    93           <span tal:replace="view/max_file_upload_size">10 KB</span>
    94       </tr>
     67              <span i18n:translate="">
     68                PDF files only. Max. file size:
     69              </span>
     70              <span tal:replace="view/max_file_upload_size">10 KB</span>
     71            </td>
     72          </tal:cond>
     73        </tr>
     74      </tal:files>
     75
    9576      <tr tal:condition="view/manage_applications">
    9677        <td class="fieldname" i18n:translate="">Password:</td>
     
    141122    <span i18n:translate="">
    142123     I hereby confirm that the Passport Photograph uploaded on this form is a
    143      true picture of me. 
     124     true picture of me.
    144125    </span>
    145126  </div>
     
    153134    </span>
    154135  </div>
     136
     137  <tal:refereereports condition="view/display_refereereports">
     138    <br /><br />
     139    <h3 i18n:translate="">
     140        Referee Reports
     141    </h3>
     142    <table i18n:domain="waeup.kofa" class="table table-condensed">
     143      <thead>
     144      <tr>
     145        <th i18n:translate="">Report Id</th>
     146        <th i18n:translate="">Creation Date</th>
     147        <th i18n:translate="">Referee</th>
     148        <th i18n:translate="">Email Address</th>
     149      </tr>
     150      </thead>
     151      <tbody>
     152        <tr tal:repeat="cl context/refereereports">
     153          <td> <a tal:attributes="href python:view.url(cl)">
     154            <span tal:content="cl/r_id">RID</span></a></td>
     155          <td tal:content="python: layout.formatDatetime(cl.creation_date)">CREATION DATE</td>
     156          <td tal:content="cl/name">REFEREE</td>
     157          <td tal:content="cl/email">EMAIL</td>
     158        </tr>
     159      </tbody>
     160    </table>
     161  </tal:refereereports>
    155162
    156163  <tal:payments condition="view/display_payments">
     
    175182        <tr tal:repeat="cl context/payments">
    176183          <td>
    177            <input type="checkbox" name="val_id"
    178                 tal:attributes="value cl/__name__"
     184           <input type="checkbox"  name="val_id"
     185          tal:attributes="value cl/__name__"
    179186           tal:condition="python: not view.unremovable(cl)" />
    180187          </td>
Note: See TracChangeset for help on using the changeset viewer.