Metadata-Version: 1.0
Name: django-label-tag-attr
Version: 1.0.2
Summary: Add css classes and html tag attributes to django form's label.
Home-page: https://github.com/c-bata/django-label-tag-attr
Author: Masashi Shibata <contact@c-bata.link>
Author-email: contact@c-bata.link
License: MIT License
Description: =====================
        django-label-tag-attr
        =====================
        
        .. image:: https://travis-ci.org/c-bata/django-label-tag-attr.svg
            :target: https://travis-ci.org/c-bata/django-label-tag-attr
        
        .. image:: https://badge.fury.io/py/django-label-tag-attr.svg
            :target: http://badge.fury.io/py/django-label-tag-attr
        
        Add css classes and html tag attributes to form's label in django templates.
        This library can render a form label like `django-widget-tweaks <https://github.com/kmike/django-widget-tweaks>`_
        
        The license is MIT.
        
        Installation
        ============
        
        ::
        
            $ pip install django-label-tag-attr
        
        Then add 'label_tag_attr' to INSTALLED_APPS.
        
        
        Usage
        =====
        
        Previous(Use django-widget-tweaks only)
        ---------------------------------------
        
        .. code-block:: html
        
            {% load widget_tweaks %}
        
            <label id="{{ form.text.auto_id }}" class="control-label">{{ form.text.label }}</label>
            {% render_label form.text class="form-control" %}
        
        Use django-label-tag-attr
        -------------------------
        
        ``render_label`` template tag for customizing form's label by using an HTML-like syntax.
        
        .. code-block:: html
        
            {% load label_tag_attr %}
            {% load widget_tweaks %}
        
            {% render_label form.text class="control-label" %}
            {% render_field form.text class="form-control" %}
        
        Resources
        =========
        
        * `Github <https://github.com/c-bata/django-label-tag-attr>`_
        * `PyPI <https://pypi.python.org/pypi/django-label-tag-attr>`_
        
        
        CHANGES
        =======
        
        1.0.0 (2015-03-29)
        ------------------
        
        Initial release
        
        
        1.0.2 (2015-05-09)
        ------------------
        
        - Support django1.8 and python2.7.
        - Bug fixed.
Keywords: django,form,label,label_tag_attr
Platform: UNKNOWN
