diff --git a/README.md b/README.md index 6f22d2c98..e2bddf812 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 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) 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 = []