document osusers code

This commit is contained in:
Jan Dittberner 2014-12-27 22:44:27 +01:00
parent 18e47d73b4
commit 0df67e7154
5 changed files with 430 additions and 27 deletions

View file

@ -0,0 +1,17 @@
"""
This module contains the :py:class:`django.apps.AppConfig` instance for the
:py:module:`osusers` app.
"""
from __future__ import unicode_literals
from django.apps import AppConfig
from django.utils.translation import ugettext_lazy as _
class OsusersAppConfig(AppConfig):
"""
AppConfig for the :py:mod:`osusers` app.
"""
name = 'osusers'
verbose_name = _('Operating System Users and Groups')