Ignore:
Timestamp:
8 Sep 2021, 07:15:07 (3 years ago)
Author:
Henrik Bettermann
Message:

Enable students and officers to upload scanned signature in the same
way as passport pictures are handled. Some tabs and titles had to be
renamed. The placeholder file, which is still the portrait
placeholder, are no longer shown on base pages.

Location:
main/waeup.kofa/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.kofa/trunk

    • Property svn:ignore
      •  

        old new  
        2121faculties.csv
        2222.mr.developer.cfg
         23dist
  • main/waeup.kofa/trunk/src/waeup/kofa/students/browser_templates/basemanagepage.pt

    r11254 r16609  
    1010    <li>
    1111      <a href="#tab2" data-toggle="tab">
    12         <span i18n:translate="">Passport Picture</span>
     12        <span i18n:translate="">Files</span>
    1313      </a>
    1414    </li>
  • main/waeup.kofa/trunk/src/waeup/kofa/students/browser_templates/imagedisplay.pt

    r11254 r16609  
    1 <tr>
     1<tr tal:condition="viewlet/file_exists">
    22  <td class="fieldname">
    33        <span tal:replace="viewlet/label">FILENAME</span>:
  • main/waeup.kofa/trunk/src/waeup/kofa/students/browser_templates/imageupload.pt

    r11558 r16609  
    44  </td>
    55  <td>
    6     <img align="middle" height="125px"
    7          tal:attributes="src python: view.url(context, viewlet.download_name)" />
    8     &nbsp;
    9     <input type="submit" tal:condition="viewlet/file_exists"
    10      tal:attributes="id python:('delete_%s' % viewlet.input_name);
    11         name python:('delete_%s' % viewlet.input_name)"
    12      value="Delete" class="btn btn-danger" />
    13     <br /><br />
    14 
     6    <tal:file_exists condition="viewlet/file_exists">
     7      <img align="middle" height="125px"
     8           tal:attributes="src python: view.url(context, viewlet.download_name)" />
     9      &nbsp;
     10      <input type="submit"
     11       tal:attributes="id python:('delete_%s' % viewlet.input_name);
     12          name python:('delete_%s' % viewlet.input_name)"
     13       value="Delete" class="btn btn-danger" />
     14      <br /><br />
     15    </tal:file_exists>
    1516                <div class="input-group">
    1617                        <div class="input-group-btn">
Note: See TracChangeset for help on using the changeset viewer.