From 57bae9969b518513938cd1afdb3208a7f8822f7f Mon Sep 17 00:00:00 2001 From: Daniel Quinn Date: Sun, 17 Jan 2016 02:09:52 +0000 Subject: [PATCH 1/3] Sort senders by name --- src/documents/models.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/documents/models.py b/src/documents/models.py index be00f5624..c8c7b08f6 100644 --- a/src/documents/models.py +++ b/src/documents/models.py @@ -11,6 +11,9 @@ class Sender(models.Model): name = models.CharField(max_length=128, unique=True) slug = models.SlugField() + class Meta(object): + ordering = ("name",) + def save(self, *args, **kwargs): if not self.slug: self.slug = slugify(self.name) From 08270b1aaa1d8f6ed4f0a8727b0257a4be40856c Mon Sep 17 00:00:00 2001 From: Daniel Quinn Date: Sun, 17 Jan 2016 02:10:07 +0000 Subject: [PATCH 2/3] Having debug off is too much of a pain in the ass --- src/paperless/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/paperless/settings.py b/src/paperless/settings.py index d3b7ba967..377c47b2a 100644 --- a/src/paperless/settings.py +++ b/src/paperless/settings.py @@ -23,7 +23,7 @@ BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) SECRET_KEY = 'e11fl1oa-*ytql8p)(06fbj4ukrlo+n7k&q5+$1md7i+mge=ee' # SECURITY WARNING: don't run with debug turned on in production! -DEBUG = False +DEBUG = True ALLOWED_HOSTS = [] From f28fabe048dd7f9fbb460c7cd45f5e700376f31a Mon Sep 17 00:00:00 2001 From: root Date: Sat, 16 Jan 2016 19:07:27 +0000 Subject: [PATCH 3/3] Added a stability notice --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index fa5d71d7f..ac01e124c 100644 --- a/README.md +++ b/README.md @@ -25,6 +25,14 @@ it... because paper. I wrote this to make my life easier. In most cases, no one will care or notice. +## Stability + +Paperless is still under active development (just look at the git commit +history) so don't expect it to be 100% stable. I'm using it for my own +documents, but I'm crazy like that. If you use this and it breaks something, +you get to keep all the shiny pieces. + + ## Requirements This is all really a quite simple, shiny, user-friendly wrapper around some very