aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2018-02-28 11:32:56 +1300
committerPaul Eggleton <paul.eggleton@linux.intel.com>2018-05-04 23:57:52 +1200
commit6f34b7fce79e40645c0d0ada6598009c5e1e59aa (patch)
tree36eca2495878d9bf98f94e5615315682dd0cc41c
parent24960bb7be87880deda705348106d39ab6f63ea3 (diff)
downloadopenembedded-core-contrib-6f34b7fce79e40645c0d0ada6598009c5e1e59aa.tar.gz
rrs: show full name in admin
It's neater to show "Recipe Reporting System" instead of "Rrs". Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
-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'