Browse Source

Add a label to costs app

Jocelyn Delande 9 years ago
parent
commit
770666ec21
2 changed files with 7 additions and 0 deletions
  1. 1 0
      costs/__init__.py
  2. 6 0
      costs/apps.py

+ 1 - 0
costs/__init__.py

@@ -0,0 +1 @@
+default_app_config = 'costs.apps.CostsConfig'

+ 6 - 0
costs/apps.py

@@ -0,0 +1,6 @@
+from django.apps import AppConfig
+
+
+class CostsConfig(AppConfig):
+    name = 'costs'
+    verbose_name = 'Coûts de revient'