Skip to content

Garrocho/django-image-manager

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Django Image Manager

Image manager for django projects

Installation:

  1. pip install git+git://github.com/CharlesGarrocho/django-image-manager

Configuration:

  1. Add image_manager to your INSTALLED_APPS in settings.py;

  2. Add the path MEDIA_ROOT and MEDIA_IMAGES in settings.py:

    MEDIA_ROOT = '/home/charles/webapps/media/data/'
    MEDIA_IMAGES = MEDIA_ROOT + 'images/'
  1. Defines the type of method will be GET or POST in settings.py:
    MANAGER_IMAGES_METHOD = 'GET'

Usage:

  1. Include url image_manager to urls.py in your app:
    urlpatterns = patterns('project_name',
        url(r'^image_manager/', include('image_manager.urls')),
    )
  1. Parameters to be used are: address what is the address of the image folder and name what is the name of the image.

Contributors:

  • Charles Garrocho

About

Application Images manager for your django project

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages