diff --git a/palanaeum/templates/palanaeum/collections/collection_list.html b/palanaeum/templates/palanaeum/collections/collection_list.html index 25c68ee..d70a4a4 100644 --- a/palanaeum/templates/palanaeum/collections/collection_list.html +++ b/palanaeum/templates/palanaeum/collections/collection_list.html @@ -16,11 +16,11 @@ - + - - - + + + {% for collection in collections %} - - - - + + + - - + {% trans 'Delete' %} + + + {% endfor %}
{% trans 'No.' %}{% trans 'No.' %} {% trans 'Name' %}{% trans 'Entries' %}{% trans 'Type' %}{% trans 'Entries' %}{% trans 'Type' %}{% trans 'Edit' %} Add new @@ -31,27 +31,48 @@
{{ forloop.counter }}{{ collection.name|truncatechars_html:80 }}
{{ collection.description|safe|truncatewords_html:100 }}
{{ collection.entries.all.count }} + {{ forloop.counter }} + + {% if collection.public %} + + {% else %} + + {% endif %} + + + {{ collection.name|truncatechars_html:80 }} +
+ {{ collection.description|safe|truncatewords_html:100 }} +
{{ collection.entries.all.count }} {% if collection.public %} {% else %} {% endif %} + - {% trans 'Edit' %} + {% trans 'Edit' %} + - {% trans 'Delete' %} - + + +

+ + + +