add code documentation for websites app
This commit is contained in:
parent
1f485e6b29
commit
5322e00345
5 changed files with 70 additions and 1 deletions
|
@ -0,0 +1,5 @@
|
|||
"""
|
||||
This app takes care of websites.
|
||||
|
||||
"""
|
||||
default_app_config = 'websites.apps.WebsitesAppConfig'
|
17
gnuviechadmin/websites/apps.py
Normal file
17
gnuviechadmin/websites/apps.py
Normal file
|
@ -0,0 +1,17 @@
|
|||
"""
|
||||
This module contains the :py:class:`django.apps.AppConfig` instance for the
|
||||
:py:mod:`websites` app.
|
||||
|
||||
"""
|
||||
from __future__ import unicode_literals
|
||||
from django.apps import AppConfig
|
||||
from django.utils.translation import ugettext_lazy as _
|
||||
|
||||
|
||||
class WebsitesAppConfig(AppConfig):
|
||||
"""
|
||||
AppConfig for the :py:mod:`websites` app.
|
||||
|
||||
"""
|
||||
name = 'websites'
|
||||
verbose_name = _('Websites')
|
Loading…
Add table
Add a link
Reference in a new issue