Add new hostingpackages app
- implement models for hosting packages, hosting options and customer specific variants - implement admin interface - add documentation
This commit is contained in:
parent
3870bcf483
commit
9f63fbbb5d
13 changed files with 1158 additions and 0 deletions
18
gnuviechadmin/hostingpackages/apps.py
Normal file
18
gnuviechadmin/hostingpackages/apps.py
Normal file
|
@ -0,0 +1,18 @@
|
|||
"""
|
||||
This module contains the :py:class:`django.apps.AppConfig` instance for the
|
||||
:py:mod:`hostingpackages` app.
|
||||
|
||||
"""
|
||||
from __future__ import unicode_literals
|
||||
from django.apps import AppConfig
|
||||
from django.utils.translation import ugettext_lazy as _
|
||||
|
||||
|
||||
class HostingPackagesAppConfig(AppConfig):
|
||||
"""
|
||||
AppConfig for the :py:mod:`osusers` app.
|
||||
|
||||
"""
|
||||
name = 'hostingpackages'
|
||||
verbose_name = _('Hosting Packages and Options')
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue