add code documentation for websites app

This commit is contained in:
Jan Dittberner 2015-01-27 18:51:04 +01:00
parent 1f485e6b29
commit 5322e00345
5 changed files with 70 additions and 1 deletions

View 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')