diff --git a/docs/changelog.rst b/docs/changelog.rst index 5a535b33b..9cb1f2784 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,6 +1,15 @@ Changelog ######### +* 0.3.5 + * A serious facelift for the documents listing page wherein we drop the + tabular layout in favour of a tiled interface. + * Users can now configure the number of items per page. + * Fix for `#171`_: Allow users to specify their own ``SECRET_KEY`` value. + * Moved the dotenv loading to the top of settings.py + * Fix for `#112`_: Added checks for binaries required for document + consumption. + * 0.3.4 * Removal of django-suit due to a licensing conflict I bumped into in 0.3.3. Note that you *can* use Django Suit with Paperless, but only in a @@ -42,7 +51,8 @@ Changelog ``paperless.conf``. * `#148`_: The database location (sqlite) is now a variable you can set in ``paperless.conf``. - * `#146`_: Fixed a bug that allowed unauthorised access to the `/fetch` URL. + * `#146`_: Fixed a bug that allowed unauthorised access to the ``/fetch`` + URL. * `#131`_: Document files are now automatically removed from disk when they're deleted in Paperless. * `#121`_: Fixed a bug where Paperless wasn't setting document creation time @@ -168,10 +178,12 @@ Changelog .. _#89: https://github.com/danielquinn/paperless/issues/89 .. _#94: https://github.com/danielquinn/paperless/issues/94 .. _#98: https://github.com/danielquinn/paperless/issues/98 +.. _#112: https://github.com/danielquinn/paperless/issues/112 .. _#121: https://github.com/danielquinn/paperless/issues/121 .. _#131: https://github.com/danielquinn/paperless/issues/131 .. _#146: https://github.com/danielquinn/paperless/issues/146 .. _#148: https://github.com/danielquinn/paperless/pull/148 .. _#150: https://github.com/danielquinn/paperless/pull/150 +.. _#171: https://github.com/danielquinn/paperless/issues/171 .. _#172: https://github.com/danielquinn/paperless/issues/172 .. _#179: https://github.com/danielquinn/paperless/pull/179 diff --git a/requirements.txt b/requirements.txt index f81cc86fd..23d8f0b63 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,18 +1,18 @@ -Django==1.10.4 +Django==1.10.5 Pillow>=3.1.1 -django-crispy-forms>=1.6.0 -django-extensions>=1.6.1 +django-crispy-forms>=1.6.1 +django-extensions>=1.7.6 django-filter>=1.0 -djangorestframework>=3.4.4 +django-flat-responsive>=1.2.0 +djangorestframework>=3.5.3 filemagic>=1.6 -langdetect>=1.0.5 -pyocr>=0.3.1 -python-dateutil>=2.4.2 -python-dotenv>=0.3.0 -python-gnupg>=0.3.8 -pytz>=2015.7 +langdetect>=1.0.7 +pyocr>=0.4.6 +python-dateutil>=2.6.0 +python-dotenv>=0.6.2 +python-gnupg>=0.3.9 +pytz>=2016.10 gunicorn==19.6.0 -django-flat-responsive==1.2.0 # For the tests pytest diff --git a/src/documents/admin.py b/src/documents/admin.py index 0601f579e..3022e3c61 100644 --- a/src/documents/admin.py +++ b/src/documents/admin.py @@ -58,7 +58,7 @@ class DocumentAdmin(CommonAdmin): } search_fields = ("correspondent__name", "title", "content") - list_display = ("created", "title", "thumbnail", "correspondent", "tags_") + list_display = ("title", "created", "thumbnail", "correspondent", "tags_") list_filter = ("tags", "correspondent", MonthListFilter) ordering = ["-created", "correspondent"] diff --git a/src/documents/templates/admin/change_list_results.html b/src/documents/templates/admin/change_list_results.html new file mode 100644 index 000000000..35288ccd0 --- /dev/null +++ b/src/documents/templates/admin/change_list_results.html @@ -0,0 +1,6 @@ +{% load hacks %} + +{# See documents.templatetags.hacks.change_list_results for an explanation #} + +{% change_list_results %} + diff --git a/src/documents/templates/admin/documents/document/change_list_results.html b/src/documents/templates/admin/documents/document/change_list_results.html new file mode 100644 index 000000000..0730f92b3 --- /dev/null +++ b/src/documents/templates/admin/documents/document/change_list_results.html @@ -0,0 +1,167 @@ +{% load i18n %} + + + + +{# This is just copypasta from the parent change_list_results.html file #} +
+ {% if header.sortable %}
+ {% if header.sort_priority > 0 %}
+ {% if header.sortable %}{{ header.text|capfirst }}{% else %}{{ header.text|capfirst }}{% endif %}
+
+ | {% endfor %}
+
+ {% endif %}
+ {% endif %}
+
---|