Skip to main content

Django app For browsing a directory tree.

Project description

Django app for browse a local server direcotry.

This app is user to give acces to a local directory and still using django auth, django templates and django middleware.

Requires django version 1.3 or greater.

Installation

  1. Install or add django-dirbrowser to your Python path.

    pip install django-dirbrowser

or with wasy_intall

easy_install django-dirbrowser

Usage

  1. Add dirbrowser to your INSTALLED_APPS setting.

  2. Add dirbrowse serve to your project’s urls.py file:

    from dirbrowser.views import serve
    
    (r'^browse/(?P<path>.*)$', serve, {'document_root': CURRENT_DIR}),
  3. Or personalize it on your own views:

    from dirbrowser.views import serve
    
    def mybrowser(reques, path):
        extra_context = {.. some extra vars ..}
    
        return serve(request, document_root='path_to_my_root_dir',
                    template="custom_template.html",
                    extra_context=extra_context)

The serve view accepts the parameters:

  • document_root : Path to the root directory to serve

  • template : Template used to show index page (if show_indexes is True)

  • extra_context : Extra context to the template

  • show_indexes : if True show the directory index page. Default is False

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-dirbrowser-0.0.3.tar.gz (5.7 kB view details)

Uploaded Source

File details

Details for the file django-dirbrowser-0.0.3.tar.gz.

File metadata

File hashes

Hashes for django-dirbrowser-0.0.3.tar.gz
Algorithm Hash digest
SHA256 8b753c4467d713dd72c6a6af82c857a967ab4eff374c894f1a7f40a48da035ea
MD5 64a5ceaef33a187ca0b8cfa0b0c49942
BLAKE2b-256 7fdf68c212285b07fdaf6acb005734fc68d68e64de83237112c2111b8f272384

See more details on using hashes here.

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