Ignore:
Timestamp:
10 Mar 2008, 19:12:40 (17 years ago)
Author:
joachim
Message:

show all fields for editing with value from first record,
show one line per field for better readability
add edit again button for importable files.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • WAeUP_SRP/base/skins/waeup_upload/uploads_form.pt

    r3308 r3314  
    3636              <th>Upload Date</th>
    3737              <th>Error Message</th>
    38               <th>Invalid Keys</th>
    3938            </tr>           
    40             <tr tal:repeat="row info/wrong"
    41                 tal:attributes="class python:test(repeat['row'].even(), 'even ajaxtd', 'odd ajaxtd')">
    42               <td align="left" valign="middle" style="width: 5px;">
    43                 <input type="checkbox" name="ids:list" value="" id="" class="noborder"
    44                        tal:define="id string:${row/id}.csv"
    45                        tal:attributes="value id;
    46                        id python:'cb_' + id;
    47                        checked python:id in info['choosen_ids'];"
    48                        />
    49               </td>
    50               <td tal:condition="nothing"> <a href="view" tal:attributes="href string:${row/url}"> <span tal:content="row/id" /></a>  </td>
    51               <td tal:content="string:${row/id}.csv" ></td>
    52               <td>
    53                 <select name="import_layout:record" tal:attributes="name string:${row/id}.import_layout:record">
    54                   <option tal:repeat="option python: context.portal_vocabularies.import_names.items()"
    55                           tal:attributes="value python: option[0];
    56                           selected python: option[0] == row['import_layout']"
    57                           tal:content="python:option[1]" />
    58                 </select>
    59               </td>
    60               <td tal:content="row/uploaded_by" ></td>
    61               <td tal:content="row/upload_date" ></td>
    62               <td tal:content="row/msg" ></td>
    63               <td>
    64                 <div tal:repeat="key row/invalid_keys">
    65                   <span tal:replace="key" /><br />
    66                   <select tal:attributes="name string:${row/id}|${key}.valid_key:record">
     39            <span tal:repeat="row info/wrong" tal:omit-tag="">
     40              <tr tal:attributes="class python:test(repeat['row'].even(), 'even ajaxtd', 'odd ajaxtd')">
     41                <td align="left" valign="middle" style="width: 5px;">
     42                  <input type="checkbox" name="ids:list" value="" id="" class="noborder"
     43                         tal:define="id string:${row/id}.csv"
     44                         tal:attributes="value id;
     45                         id python:'cb_' + id;
     46                         checked python:id in info['choosen_ids'];"
     47                         />
     48                </td>
     49                <td tal:condition="nothing"> <a href="view" tal:attributes="href string:${row/url}"> <span tal:content="row/id" /></a>  </td>
     50                <td tal:content="string:${row/id}.csv" ></td>
     51                <td>
     52                  <select name="import_layout:record" tal:attributes="name string:${row/id}.import_layout:record">
     53                    <option tal:repeat="option python: context.portal_vocabularies.import_names.items()"
     54                            tal:attributes="value python: option[0];
     55                            selected python: option[0] == row['import_layout']"
     56                            tal:content="python:option[1]" />
     57                  </select>
     58                </td>
     59                <td tal:content="row/uploaded_by" ></td>
     60                <td tal:content="row/upload_date" ></td>
     61                <td tal:content="row/msg" ></td>
     62              </tr>
     63              <tr>
     64                <th>Current</th>
     65                <th>Possible</th>
     66                <th>Value from 1. record</th>
     67              </tr>
     68              <tr tal:repeat="key row/invalid_keys">
     69                <td colspan="1">
     70                  <font tal:attributes="color python: test(key[1] == '----','red','black')" tal:content="python: key[0]" />
     71                </td>
     72                <td colspan="1"
     73                    tal:define="old_key python: key[0];new_key python: key[1];">
     74                  <select tal:attributes="name string:${row/id}|${old_key}.valid_key:record">
    6775                    <option tal:repeat="new row/valid_keys"
    68                             tal:attributes="value new"
     76                            tal:attributes="value new; selected python: new == new_key"
    6977                            tal:content="new" />
    70                   </select>
    71                 </div>
    72               </td>
    73               <td tal:condition="python:0">
    74                 <a href="edit" tal:attributes="href string:${row/url}/external_edit_form"
    75                    target="edit"
    76                    onclick="javascript:window.open('','edit','width=600, height=700, directories=no, toolbar=no, location=no, menubar=no, scrollbars=yes, status=no, resizable=no, dependent=no')">
    77                   [edit]
    78                 </a>
    79               </td>
    80             </tr>
    81           </table>
     78                  </select><br />
     79                </td>
     80                <td colspan="1" tal:content="python: key[2]" />
     81              </tr>
     82            </span>
     83            </table>
    8284         
    8385          <br />
     
    149151                 (cpsmcat('description_confirm_delete'), )"
    150152                 />
     153          <input type="submit" name="goto_edit" value="Edit again"
     154                 class="destructive" i18n:attributes="value"
     155                 />
    151156          <input type="submit" name="folder_delete:method" value="button_delete"
    152157                 class="destructive" i18n:attributes="value"
Note: See TracChangeset for help on using the changeset viewer.