Metadata-Version: 1.2
Name: django-frontadmin
Version: 0.4
Summary: Frontadmin is a Django app to conduct Web-based frontend theme.
Home-page: https://github.com/washim/django-frontadmin
Author: Washim Ahmed
Author-email: washim.ahmed@gmail.com
License: BSD-3-Clause
Description: ===============
        Frontadmin
        ===============
        
        Frontadmin is a Django app to conduct Web-based frontend theme. This is not replace your admin however you can build admin like functionality in frontend.
        
        Quick start
        -----------
        
        1. Add "Frontadmin" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = [
                ...
                'frontadmin',
            ]
        
        2. Add below commands in your settings.py
        
            SITE_NAME = 'YOUR_SITE_NAME'
        
        3. Include the polls URLconf in your project urls.py like this::
        
            path('', include('frontadmin.urls')),
        
        4. Run ``python manage.py migrate`` to create the Frontadmin models.
        
        5. Start the development server and visit http://127.0.0.1:8000/
           to create a Frontadmin (you'll need the Admin app enabled).
        
        6. Visit http://127.0.0.1:8000/ to participate in the Frontadmin.
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 3.2
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Requires-Python: >=3.6
