Ignore:
Timestamp:
15 Apr 2008, 13:00:16 (16 years ago)
Author:
Henrik Bettermann
Message:

abbreviate file names

File:
1 edited

Legend:

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

    r3326 r3435  
    200200            <tr tal:repeat="row info/imported"
    201201                tal:attributes="class python:test(repeat['row'].even(), 'even ajaxtd', 'odd ajaxtd')">
    202               <td tal:content="string:${row/id}.done" ></td>
     202              <td nowrap tal:condition="python:len(row['id']) > 30" tal:content="python:row['id'][:30] + '[...].done'" ></td>
     203              <td tal:condition="python:len(row['id']) <= 30" tal:content="python:row['id'] + '.done'" ></td>
    203204              <td tal:content="row/import_layout"></td>
    204205              <td tal:content="row/uploaded_by" ></td>
Note: See TracChangeset for help on using the changeset viewer.