Skip to content

Extension to django-filebrowser that allow to integrate with youtube and thinglink + easily add other services

Notifications You must be signed in to change notification settings

tomaszroszko/django_filebrowser_extension

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

django_filebrwoser_extension

Extension for django-filebrowser that allows to use filebrowser not only for files but also for medias from 3'rd part services like:

Install

pip install -e git+git@github.com:tomaszroszko/django_filebrowser_extension.git#egg=django_filebrowser_extension-master

Setup

In your settings.py

INSTALLED_APPS = (

    'grappelli',
    'filebrowser_extensions',
    'filebrowser_extensions.thinglink',
    'filebrowser_extensions.youtube',
    'filebrowser',
    'django.contrib.admin',

In urls.py

from django.conf.urls import include, patterns
from django.contrib import admin
from filebrowser_extensions.sites import site


urlpatterns = patterns('',
   (r'^admin/filebrowser/', include(site.urls)),
   (r'^grappelli/', include('grappelli.urls')),
   (r'^admin/', include(admin.site.urls)),
)

Screenshots

File Browser Youtube Integration File Browser Youtube Integration

About

Extension to django-filebrowser that allow to integrate with youtube and thinglink + easily add other services

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published