Changeset 3318


Ignore:
Timestamp:
11 Mar 2008, 15:39:04 (17 years ago)
Author:
Henrik Bettermann
Message:

form beautyfied

Location:
WAeUP_SRP/base
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • WAeUP_SRP/base/WAeUPImport.py

    r3316 r3318  
    172172            for k in import_keys:
    173173                if k in singels:
    174                     keys += (k,'DUP_%s' % k,values[i],'duplicate'),
     174                    keys += (k,'%s' % k,values[i],'(duplicate)'),
    175175                    msg += ("duplicate %s," % k)
    176                     keys[singels.index(k)] = (k,'DUP_%s' % k,values[singels.index(k)],'duplicate')
     176                    keys[singels.index(k)] = (k,'%s' % k,values[singels.index(k)],'(duplicate)')
    177177                elif k in invalid_keys and not k.startswith(IGNORE):
    178                     keys += (k,NO_KEY,values[i],'invalid'),
     178                    keys += (k,NO_KEY,values[i],'(invalid)'),
    179179                else:
    180180                    keys += (k,k,values[i],''),
  • WAeUP_SRP/base/skins/waeup_upload/uploads_form.pt

    r3316 r3318  
    2828               tal:attributes="action info/action"
    2929               >
    30           <table tal:condition="python: 1" class="contentListing" width="100%" summary="content layout" id="folder_content">     
     30          <table tal:condition="python: 1" class="contentListing" width="100%" summary="content layout" id="folder_content" border=0>     
    3131            <tr>
    3232              <th></th>
    3333              <th>Filename</th>
    3434              <th>Data Layout</th>
    35               <th>By</th>
     35              <th>Uploaded By</th>
    3636              <th>Upload Date</th>
    3737              <th>Error Message</th>
     
    6161                <td tal:content="row/msg" ></td>
    6262              </tr>
     63             
    6364              <tr>
    64                 <th>Current</th>
    65                 <th>Possible</th>
    66                 <th>Value from 1. record</th>
     65                <td>&nbsp;</td>
     66                <td>&nbsp;</td>
     67                <td>&nbsp;</td>
     68                <td colspan="3">&nbsp;</td>
     69              </tr>
     70              <tr>
     71                <th></th>
     72                <th>Current Column Heading</th>
     73                <th>Possible Field Names</th>
     74                <th colspan="3">First Record (Example)</th>
    6775              </tr>
    6876              <tr tal:repeat="key row/fields">
     77                <td />
    6978                <td colspan="1">
    7079                  <font tal:attributes="color python: test(key[3],'red','black')">
    71                     <span tal:content="python: key[1]" tal:omit-tag=""/>
     80                    <span tal:content="python: key[0]" tal:omit-tag=""/>
    7281                    <span tal:condition="python: key[3]" tal:content="python: key[3]" tal:omit-tag=""/>
    7382                  </font>
     
    8190                  </select><br />
    8291                </td>
    83                 <td colspan="1" tal:content="python: key[2]" />
     92                <td colspan="3" tal:content="python: key[2]" />
    8493              </tr>
    8594            </span>
     
    120129              <th>Filename</th>
    121130              <th>Data Layout</th>
    122               <th>By</th>
     131              <th>Uploaded By</th>
    123132              <th>Upload Date</th>
    124133            </tr>           
     
    154163                 (cpsmcat('description_confirm_delete'), )"
    155164                 />
    156           <input type="submit" name="goto_edit" value="Edit again"
     165          <input type="submit" name="goto_edit" value="Re-edit"
    157166                 class="destructive" i18n:attributes="value"
    158167                 />
Note: See TracChangeset for help on using the changeset viewer.