Skip to main content

Template for reusable django applications.

Project 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>

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-webfilemanager-1.1.0.tar.gz (158.8 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page