From bd10fa1f2912c5296b076a03ac3554183b0435f4 Mon Sep 17 00:00:00 2001 From: Tim White Date: Sun, 5 Jun 2016 22:39:34 -0600 Subject: [PATCH] Added Apps config. --- termsandconditions/apps.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 termsandconditions/apps.py diff --git a/termsandconditions/apps.py b/termsandconditions/apps.py new file mode 100644 index 00000000..6abe3c73 --- /dev/null +++ b/termsandconditions/apps.py @@ -0,0 +1,8 @@ +"""Django Apps Config""" + +from django.apps import AppConfig + + +class TermsAndConditionsConfig(AppConfig): + name = 'termsandconditions' + verbose_name = "Terms and Conditions"