Rename catalogue to documents.
[redakcja.git] / src / catalogue / templates / catalogue / book_list / book.html
diff --git a/src/catalogue/templates/catalogue/book_list/book.html b/src/catalogue/templates/catalogue/book_list/book.html
deleted file mode 100644 (file)
index 189c932..0000000
+++ /dev/null
@@ -1,50 +0,0 @@
-{% load i18n %}
-{% load username from common_tags %}
-
-{% if book.single %}
-    {% with chunk as chunk %}
-    <tr class="table-sm">
-        <td><input type="checkbox" name="select_book" value="{{book.id}}" data-chunk-id="{{chunk.id}}"/></td>
-       <td><a class="btn btn-sm btn-outline-secondary" href="{% url 'catalogue_book' book.slug %}" title="{% trans "Book settings" %}">&#x1f4d5;</a></td>
-       <td><a class="btn btn-sm btn-outline-secondary" href="{% url 'catalogue_chunk_edit' book.slug chunk.slug %}" title="{% trans "Chunk settings" %}">&#x1f4dc;</a></td>
-        <td><a class="btn btn-primary" target="_blank"
-                    href="{% url 'wiki_editor' book.slug %}">
-                    {{ book.title }}</a></td>
-        <td>{% if chunk.stage %}
-            {{ chunk.stage }}
-        {% else %}–
-        {% endif %}</td>
-        <td class='user-column'>{% if chunk.user %}<a href="{% url 'catalogue_user' chunk.user.username %}">{{ chunk.user|username }}</a>{% endif %}</td>
-        <td>
-          {% if book.published %}
-            <span class="badge badge-info" title="{% trans "published" %}">opubl.</span>
-         {% endif %}
-          {% if book.new_publishable %}
-            <span class="badge badge-primary" title="{% trans "publishable" %}">do publ.</span>
-         {% endif %}
-          {% if chunk.changed %}
-            <span class="badge badge-warning title="{% trans "changed" %}">zmiany</span>
-         {% endif %}
-        </td>
-        <td>{{ book.project.name }}</td>
-    </tr>
-    {% endwith %}
-{% else %}
-    <tr class="table-sm">
-      <td><input type="checkbox" name="select_book" value="{{book.id}}"/></td>
-      <td><a class='btn btn-sm btn-outline-secondary' href="{% url 'catalogue_book' book.slug %}" title="{% trans "Book settings" %}">&#x1f4d5;</a></td>
-      <td></td>
-      <td>{{ book.title }}</td>
-      <td></td>
-      <td class='user-column'></td>
-      <td>
-        {% if book.published %}
-          <span class="badge badge-info" title="{% trans "published" %}">opubl.</span>
-       {% endif %}
-        {% if book.new_publishable %}
-          <span class="badge badge-info" title="{% trans "publishable" %}">do publ.</span>
-       {% endif %}
-      </td>
-      <td>{{ book.project.name }}</td>
-    </tr>
-{% endif %}