Parcourir la source

Merge branch 'master' of irina11y/coin into master

jocelyn il y a 6 ans
Parent
commit
f7db55bb0a

+ 1 - 0
coin/billing/__init__.py

@@ -0,0 +1 @@
+default_app_config = 'coin.billing.app.BillingConfig'

+ 11 - 0
coin/billing/app.py

@@ -0,0 +1,11 @@
+# -*- coding: utf-8 -*-
+
+from __future__ import unicode_literals
+from django.apps import AppConfig
+import coin.apps
+
+
+class BillingConfig(AppConfig):
+    name = 'coin.billing'
+    verbose_name = 'Facturation'
+

+ 1 - 0
coin/isp_database/__init__.py

@@ -0,0 +1 @@
+default_app_config = 'coin.isp_database.app.ISPdatabaseConfig'

+ 11 - 0
coin/isp_database/app.py

@@ -0,0 +1,11 @@
+# -*- coding: utf-8 -*-
+
+from __future__ import unicode_literals
+from django.apps import AppConfig
+import coin.apps
+
+
+class ISPdatabaseConfig(AppConfig):
+    name = 'coin.isp_database'
+    verbose_name = 'Identité du FaI'
+

+ 1 - 0
coin/members/__init__.py

@@ -0,0 +1 @@
+default_app_config = 'coin.members.app.MembersConfig'

+ 11 - 0
coin/members/app.py

@@ -0,0 +1,11 @@
+# -*- coding: utf-8 -*-
+
+from __future__ import unicode_literals
+from django.apps import AppConfig
+import coin.apps
+
+
+class MembersConfig(AppConfig):
+    name = 'coin.members'
+    verbose_name = 'Membres'
+

+ 1 - 0
coin/offers/__init__.py

@@ -0,0 +1 @@
+default_app_config = 'coin.offers.app.OffersConfig'

+ 11 - 0
coin/offers/app.py

@@ -0,0 +1,11 @@
+# -*- coding: utf-8 -*-
+
+from __future__ import unicode_literals
+from django.apps import AppConfig
+import coin.apps
+
+
+class OffersConfig(AppConfig):
+    name = 'coin.offers'
+    verbose_name = 'Offres et Abonnements'
+

+ 1 - 0
simple_dsl/__init__.py

@@ -0,0 +1 @@
+default_app_config = 'simple_dsl.app.SimpleDSLConfig'

+ 11 - 0
simple_dsl/app.py

@@ -0,0 +1,11 @@
+# -*- coding: utf-8 -*-
+
+from __future__ import unicode_literals
+from django.apps import AppConfig
+import coin.apps
+
+
+class SimpleDSLConfig(AppConfig):
+    name = 'simple_dsl'
+    verbose_name = 'xDSl'
+

+ 2 - 3
simple_dsl/models.py

@@ -14,9 +14,8 @@ class SimpleDSL(Configuration):
     DSL reselling.
     """
     class Meta:
-        verbose_name = 'DSL line'
-        # If Django's default pluralisation is not satisfactory
-        #verbose_name_plural = 'very many DSL lines'
+        verbose_name = 'ligne xDSL'
+        verbose_name_plural = 'lignes xDSL'
 
     # URL namespace associated to this configuration type, to build URLs
     # in various view.  Should also be defined in urls.py.  Here, we don't