Metadata-Version: 1.1
Name: django-webfilemanager
Version: 1.0.0
Summary: Template for reusable django applications.
Home-page: https://github.com/rameezarshad/django-filemanager
Author: rameez
Author-email: rameez.arshad@outlook.in
License: BSD
Description-Content-Type: UNKNOWN
Description: =====
        Filemanager
        =====
        
        A simple and standalone file manager and browser for django projects. Supports multiple instances which can be used within the admin area or for the frontend as well.
        
        Key features
        ------------
        
        Standalone file browser and manager
        No external dependencies except django
        Feature rich uploader included (jQuery File Upload)
        Based on django storage backend
        
        
        Quick start
        -----------
        
        1. Add "filemanager" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = [
                ...
                'filemanager',
            ]
        
        2. Include the filemanager URLconf in your project urls.py like this::
        
            url(r'^your-url/', include('filemanager.urls', namespace='filemanager')),
        
        3. Run `python manage.py migrate` for initial migrations.
        
        4. Add STATIC_URL, STATIC_ROOT, MEDIA_URL and MEDIA_ROOT to the settings.
        
        5. Make sure the base folder defined in your settings for filemanager does exist. By default it is located at MEDIA_ROOT/uploads.
        
        5. Run `python manage.py collectstatic` to save the staticfile to your STATIC_ROOT.
        
        6. If you have 'base.html' in your project then add::
        	
        	<html>
          		<head>
        			{% block head%}{% endblock %}
        		</head>
          		<body>
            			{% block content %}{% endblock %}
          		</body>
        	</html>
        
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: Framework :: Django
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
