From 012c65cc7c74fe2161ead10edc6abf20c7877459 Mon Sep 17 00:00:00 2001 From: Seth Ladygo Date: Wed, 26 Feb 2020 16:28:36 -0800 Subject: [PATCH] procat2/models.py: fix Catalog.PDF_DIR --- procat2/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/procat2/models.py b/procat2/models.py index 0e0fc3b..6d339b0 100644 --- a/procat2/models.py +++ b/procat2/models.py @@ -51,7 +51,7 @@ def unix_datetime(date): class Catalog(models.Model): - PDF_DIR = 'catalogs' + PDF_DIR = 'catalogs/user' PDF_URL = 'export/catalogs' owner = models.ForeignKey(settings.AUTH_USER_MODEL, on_delete=models.CASCADE)