2ac0a28b00543c904af95241ee54ccba6f634cd7
[redakcja.git] / apps / filebrowser / templates / filebrowser / include / filelisting.html
1 {% load i18n adminmedia fb_tags fb_versions %}
2 <tr class="{% cycle 'row1' 'row2' %}">
3     <!-- FILESELECT FOR FILEBROWSEFIELD -->
4     {% ifequal query.pop '1' %}
5     {% if results_var.select_total %}
6     <td class="fb_icon">
7         {% selectable file.filetype query.type %}
8         {% if selectable %}
9         <a href="javascript://" onclick="FileSubmit('{{ file.url_save }}', '{{ file.url_thumbnail }}', '{{ file.filetype }}');" class="fb_selectlink" title="{% trans 'Select' %}"></a>
10         {% else %}
11         <img src="{{ settings_var.URL_FILEBROWSER_MEDIA }}img/filebrowser_icon_select_disabled.gif" width="23" height="17" />
12         {% endif %}
13     </td>
14     {% endif %}
15     {% endifequal %}
16
17     <!-- FILESELECT FOR RTE/TINYMCE -->
18     {% ifequal query.pop '2' %}
19     {% if results_var.select_total %}
20     <td class="fb_icon">
21         {% selectable file.filetype query.type %}
22         {% if selectable %}
23         <a href="javascript:FileBrowserDialogue.fileSubmit('{{ file.url_save }}');" class="fb_selectlink" title="{% trans 'Select File' %}"></a>
24         {% else %}
25         <img src="{{ settings_var.URL_FILEBROWSER_MEDIA }}img/filebrowser_icon_select_disabled.gif" width="23" height="17" />
26         {% endif %}
27     </td>
28     {% endif %}
29     {% endifequal %}
30
31     <!-- FILESELECT FOR CKEDITOR (FORMER "FCKEDITOR") -->
32     {% ifequal query.pop '3' %}
33     {% if results_var.select_total %}
34     <td class="fb_icon">
35         {% selectable file.filetype query.type %}
36         {% if selectable %}
37         <a href="#" onclick="OpenFile(ProtectPath('{{ file.url_save }}'));return false;" class="fb_selectlink" title="{% trans 'Select File' %}"></a>
38         {% else %}
39         <img src="{{ settings_var.URL_FILEBROWSER_MEDIA }}img/filebrowser_icon_select_disabled.gif" width="23" height="17" />
40         {% endif %}
41     </td>
42     {% endif %}
43     {% endifequal %}
44
45     <!-- SHOW VERSIONS -->
46     {% if settings_var.ADMIN_VERSIONS and results_var.images_total %}
47     <td class="fb_icon">
48         {% ifequal file.filetype 'Image' %}<a href="{% url fb_versions %}{% query_string %}&amp;filename={{ file.filename }}" class="fb_showversionslink" title="{% trans 'Show Versions' %}"></a>{% endifequal %}
49     </td>
50     {% endif %}
51
52     <!-- FILEICON -->
53     <td class="fb_icon"><img src="{{ settings_var.URL_FILEBROWSER_MEDIA }}img/filebrowser_type_{{ file.filetype|lower }}.gif" /></td>
54
55     <!-- THUMBNAIL -->
56     {% if results_var.images_total %}
57     <td class="fb_icon">
58         {% ifequal file.filetype 'Image' %}
59         <a href="{{ file.url_full }}"><img src="{% version file.path settings_var.ADMIN_THUMBNAIL %}" title="{% trans 'View Image' %}" /></a>
60         {% endifequal %}
61     </td>
62     {% endif %}
63
64     <!-- FILENAME/DIMENSIONS -->
65     {% ifequal file.filetype 'Folder' %}
66     <td><b><a href="{% url fb_browse %}{% query_string '' 'dir' %}&amp;dir={{ file.path_relative_directory|urlencode }}">{{ file.filename }}</a></b></td>
67     {% else %}
68     <td><b><a href="{{ file.url_full }}">{{ file.filename }}</a></b>{% if file.dimensions %}<br /><span class="tiny">{{ file.dimensions.0 }} x {{ file.dimensions.1 }} px</span>{% endif %}</td>
69     {% endifequal %}
70
71     <!-- RENAME -->
72     <td class="fb_icon"><a href="{% url fb_rename %}{% query_string %}&amp;filename={{ file.filename }}" class="fb_renamelink" title="{% trans 'Rename' %}"></a></td>
73
74     <!-- SIZE -->
75     <td>{{ file.filesize|filesizeformat }}</td>
76
77     <!-- DATE -->
78     <td>{{ file.datetime|date:"N j, Y" }}</td>
79
80     <!-- DELETE -->
81     {% if results_var.delete_total %}
82     <td class="fb_icon">
83         {% ifnotequal file.filetype 'Folder' %}
84         <a href="{% url fb_delete %}{% query_string %}&amp;filename={{ file.filename }}&amp;filetype={{ file.filetype }}" class="fb_deletelink" onclick="return confirm('{% trans "Are you sure you want to delete this file?" %}');" title="{% trans 'Delete File' %}"></a>
85         {% else %}
86         {% if file.is_empty %}
87         <a href="{% url fb_delete %}{% query_string %}&amp;filename={{ file.filename }}&amp;filetype={{ file.filetype }}" class="fb_deletelink" onclick="return confirm('{% trans "Are you sure you want to delete this Folder?" %}');" title="{% trans 'Delete Folder' %}"></a>
88         {% endif %}
89         {% endifnotequal %}
90     </td>
91     {% endif %}
92
93     <!-- DEBUG -->
94     {% if settings_var.DEBUG %}
95     <td>
96         <strong>Filename</strong> {{ file.filename }}<br />
97         <strong>Filetype</strong> {{ file.filetype }}<br />
98         <strong>Filesize</strong> {{ file.filesize }}<br />
99         <strong>Extension</strong> {{ file.extension }}<br />
100         <strong>Date</strong> {{ file.date }}<br />
101         <strong>Datetime Object</strong> {{ file.datetime }}<br /><br />
102         <strong>Relative Path</strong> {{ file.path_relative }}<br />
103         <strong>Full Path</strong> {{ file.path_full }}<br />
104         <strong>Relative URL</strong> {{ file.url_relative }}<br />
105         <strong>Full URL</strong> {{ file.url_full }}<br /><br />
106         <strong>URL for FileBrowseField</strong> {{ file.url_save }}<br />
107         <strong>Thumbnail URL</strong> {{ file.url_thumbnail }}
108         {% ifequal file.filetype 'Image' %}<br /><br />
109         <strong>Dimensions</strong> {{ file.dimensions }}<br />
110         <strong>Width</strong> {{ file.width }}<br />
111         <strong>Height</strong> {{ file.height }}<br />
112         <strong>Orientation</strong> {{ file.orientation }}
113         {% endifequal %}
114         {% ifequal file.filetype 'Folder' %}<br /><br />
115         <strong>Is Empty</strong> {{ file.is_empty }}
116         {% endifequal %}
117     </td>
118     {% endif %}
119
120 </tr>