aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--rrs/__init__.py2
-rw-r--r--rrs/apps.py6
2 files changed, 8 insertions, 0 deletions
diff --git a/rrs/__init__.py b/rrs/__init__.py
index e69de29bb2..3eab2fe85d 100644
--- a/rrs/__init__.py
+++ b/rrs/__init__.py
@@ -0,0 +1,2 @@
+
+default_app_config = 'rrs.apps.RecipeReportingSystemConfig'
diff --git a/rrs/apps.py b/rrs/apps.py
new file mode 100644
index 0000000000..ea25060831
--- /dev/null
+++ b/rrs/apps.py
@@ -0,0 +1,6 @@
+from django.apps import AppConfig
+
+
+class RecipeReportingSystemConfig(AppConfig):
+ name = 'rrs'
+ verbose_name = 'Recipe Reporting System'