Metadata-Version: 1.0
Name: django-asset-server-url
Version: 0.1
Summary: Provides the URL for an asset server, as a template context variable.
Home-page: https://github.com/ubuntudesign/django-asset-server-url
Author: Robin
Author-email: robin.winslow@canonical.com
License: UNKNOWN
Description: Django asset\_server\_url
        =========================
        
        Provides ``{{ ASSET_SERVER_URL }}`` (the URL for an asset server) as a
        template context variable. Can be set through settings.py or by passing
        an environment variable to the app.
        
        Setup
        -----
        
        .. code:: python
        
            # settings.py
            TEMPLATE_CONTEXT_PROCESSORS += [
                "assets_template_context.asset_server_url"
            ]
        
        Definition
        ----------
        
        Set it in settings, e.g.:
        
        .. code:: python
        
            # settings.py
            ASSET_SERVER_URL = '//assets.example.com/'
        
        Or when starting the site, e.g.:
        
        .. code:: bash
        
            ASSET_SERVER_URL=//assets.example.com/ python manage.py runserver
        
        Usage
        -----
        
        Use in templates:
        
        .. code:: html
        
            # templates/index.html
        
            <img src="{{ ASSET_SERVER_URL }}a34bc3-fish.jpg" />
        
        Output:
        
        .. code:: html
        
            <img src="//assets.example.com/a34bc3-fish.jpg"
        
Platform: UNKNOWN
