Metadata-Version: 1.1
Name: django-files-library
Version: 0.1.5
Summary: django files Library component
Home-page: https://github.com/ahmadiga/django-files-library
Author: Ahmad Bazadough
Author-email: ahmadiga1985@hotmail.com
License: UNKNOWN
Description: django library
        
        django library is file management django app with user permissions and file download layer
        
        
        Installation
        1. install the package using "pip install git+git://github.com/ahmadiga/django-files-library.git" or "pip install django-files-library"
        2. Add "django_files_library" to your INSTALLED_APPS setting.
        3. Add ``` url(r'django_files_library/', include('django_files_library.urls')), ``` to urls.py.
        
        Configurations
        DJANGO_FILES_LIBRARY_ADD_FILE_FORM_CLASS
        A string pointing to a custom form class (e.g. ‘myapp.forms.AddFileForm’) that is used during adding new file.
        
        DJANGO_FILES_LIBRARY_INLINE_FORM Boolean flag to display upload file form to the list or display it in a separate page
        
        Render library
        To render library user the following template tags:
        1.```{% load django_files_library %}```:import template tag
        2.```{% render_library <library object> %}```:to render a full view of the library
        3.```{% render_library_list <library object> %}```:to render files list only
        
        ### TBD
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.8
Classifier: Framework :: Django :: 1.9
Classifier: Framework :: Django :: 1.10
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
