Merge branch 'devel'
[qcg-portal.git] / filex / templates / filex / source.js.html
index 9457298..451d270 100644 (file)
 
 <script type="text/template" id="dir-template">
     <td class="text-center">
-        <label for="dir-<%= cid %>" class="sr-only">Zaznacz katalog <%= name %></label>
-        <input id="dir-<%= cid %>" type="checkbox" autocomplete="off">
+        <label for="dir-<%- cid %>" class="sr-only">Zaznacz katalog <%- name %></label>
+        <input id="dir-<%- cid %>" type="checkbox" autocomplete="off">
     </td>
     <td class="text-center"><span class="glyphicon glyphicon-folder-open" aria-hidden="true"></span></td>
-    <td><a class="link" href="#<%= url %>"><%= name %></a></td>
-    <td class="text-right"><%= size %></td>
-    <td><%= date %></td>
+    <td><a class="link" href="#<%- url %>"><%- name %></a></td>
+    <td class="text-right"><%- size %></td>
+    <td><%- date %></td>
 </script>
 
 <script type="text/template" id="file-template">
     <td class="text-center">
-        <label for="file-<%= cid %>" class="sr-only">Zaznacz plik <%= name %></label>
-        <input id="file-<%= cid %>" type="checkbox" autocomplete="off">
+        <label for="file-<%- cid %>" class="sr-only">Zaznacz plik <%- name %></label>
+        <input id="file-<%- cid %>" type="checkbox" autocomplete="off">
     </td>
     <td class="text-center"><span class="glyphicon glyphicon-file" aria-hidden="true"></span></td>
     <td>
-        <a class="link" href="{% url 'filex:download' %}?<%= params %>"><%= name %></a>
+        <a class="link" href="{% url 'filex:download' %}?<%- params %>"><%- name %></a>
     </td>
-    <td class="text-right"><%= size %></td>
-    <td><%= date %></td>
+    <td class="text-right"><%- size %></td>
+    <td><%- date %></td>
 </script>