Metadata-Version: 1.0
Name: django-admin-user-stats
Version: 0.1.1
Summary: django-admin-tools dashboard modules with user registration stats
Home-page: https://bitbucket.org/kmike/django-admin-user-stats/
Author: Mikhail Korobov
Author-email: kmike84@gmail.com
License: MIT license
Description: =============================
        django-admin-tools-user-stats
        =============================
        
        This app provides django-admin-tools dashboard modules with user
        registration stats/charts.
        
        The license is MIT.
        
        Installation
        ============
        
        Make sure django-admin-tools >= 0.4.0 is installed and then
        
        ::
        
            pip install "django-qsstats-magic >= 0.6.1"
            pip install "python-dateutil==1.5"
            pip install "django-chart-tools >= 0.2.1"
            pip install django-admin-user-stats
        
        Then add 'admin_user_stats' and 'chart_tools' to INSTALLED_APPS.
        
        Quickstart
        ==========
        
        Import ``RegistrationCharts`` dashboard module::
        
            from admin_user_stats.modules import RegistrationCharts
        
        then and add it to dashboard's children::
        
            self.children += [RegistrationCharts()]
        
        go to admin and enjoy the result_.
        
        .. _result: https://bitbucket.org/kmike/django-admin-user-stats/downloads/RegistrationCharts.png
        
        Usage
        =====
        
        RegistrationChart
        -----------------
        
        Dashboard module with user registration charts (new users per day,
        week or month).
        
        To enable, import it::
        
            from admin_user_stats.modules import RegistrationChart
        
        and add to dashboard's children (or to modules.Group)::
        
            self.children += [RegistrationChart('New Users', interval='days', days=30)]
        
        
        RegistrationCharts
        ------------------
        
        Group subclass with 3 default children modules (new users per day,
        per week and per month).
        
        
        get_registration_charts()
        -------------------------
        
        A function returning 3 default RegistrationChart instances::
        
            from admin_user_stats.modules import get_registration_charts
            self.children += get_registration_charts()
        
        
        Contributing
        ============
        
        Development of django-admin-user-stats happens at Bitbucket and Github:
        
        * https://bitbucket.org/kmike/django-admin-user-stats
        * https://github.com/kmike/django-admin-user-stats
        
        If you don’t like Bitbucket, Github, Mercurial and Git you’re welcome
        to send regular patches.
        
        Bug tracker: https://github.com/kmike/django-admin-user-stats/issues
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
