You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

filepicker.html 601B

1234567891011121314151617181920212223
  1. <div id="{dialog_name}" title="{title}">
  2. <span class="dirtree breadcrumb"></span>
  3. <div class="filelist-container">
  4. <div class="emptycontent">
  5. <div class="icon-folder"></div>
  6. <h2>{emptytext}</h2>
  7. </div>
  8. <table id="filestable" class="filelist">
  9. <tbody>
  10. <tr data-entryname="{filename}" data-type="{type}">
  11. <td class="filename"
  12. style="background-image:url({icon})">{filename}
  13. </td>
  14. <td class="filesize"
  15. style="color:rgb({sizeColor}, {sizeColor}, {sizeColor})">
  16. {size}
  17. </td>
  18. <td class="date">{date}</td>
  19. </tr>
  20. </tbody>
  21. </table>
  22. </div>
  23. </div>