Quantcast
Channel: CodeSection,代码区,Python开发技术文章_教程 - CodeSec
Viewing all articles
Browse latest Browse all 9596

DJFiles is a Django app for manage static files of your project via admin panel

$
0
0
DJFiles

DJFiles is a simple Django app for manage static files of your project in admin panel. This app is useful for projects where there is a content manager, which don't have access to server via ssh or don't even know what it is =)

Using this app you will be able to save static files through admin panel. Files will be saved in /media/ directory of your project. It's useful if you are not always have access to server or have a content manager who responsible for managing such files.

Requirements python >= 2.7 Django >= 1.8 Installation $ pip install django-djfiles

Add djfiles to your INSTALLED_APPS setting like this:

<code>INSTALLED_APPS = [ ... 'djfiles', ] </code>

Apply djfiles migrations:

$ ./manage.py migrate djfiles


Viewing all articles
Browse latest Browse all 9596

Trending Articles