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>
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
Release history Release notifications | RSS feed
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 details)
File details
Details for the file django-webfilemanager-1.1.0.tar.gz
.
File metadata
- Download URL: django-webfilemanager-1.1.0.tar.gz
- Upload date:
- Size: 158.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | be2a7703b3bc2e0ec1b7277553c2c5619dbc388a3920b83832bc6d31cc3b54f6 |
|
MD5 | 73d9401d3420ca4f3dbacd06d086ad9d |
|
BLAKE2b-256 | 1d02ead021d8e0a028f2d401cad895ee497575e808d3d348c5bbc459139e11be |