Metadata-Version: 1.0
Name: django-static-root-finder
Version: 0.1.1
Summary: A static files finder to find files in the STATIC_ROOT directory.
Home-page: https://github.com/ubuntudesign/django-static-root-finder
Author: Robin
Author-email: robin.winslow@canonical.com
License: UNKNOWN
Description: Django STATIC\_ROOT finder
        ==========================
        
        A static files finder to find files in the STATIC\_ROOT directory.
        
        Setup
        -----
        
        .. code:: python
        
            # settings.py
        
            STATICFILES_FINDERS = ['django_static_root_finder.finders.StaticRootFinder']
        
        Definition
        ----------
        
        Set your ``STATIC_ROOT``. E.g.:
        
        .. code:: python
        
            # settings.py
        
            STATIC_ROOT = 'static'  # For example
            STATIC_URL = '/static/'
        
        Usage
        -----
        
        The URL ``http://example.com/static/css/global.css`` should
        successfully link to ``./static/css/global.css``.
Platform: UNKNOWN
