Metadata-Version: 1.1
Name: django-intl-tel-input
Version: 0.1.0
Summary: A Django form widget implementing intl-tel-input.
Home-page: https://github.com/benmurden/django-intl-tel-input
Author: Benjamin Murden
Author-email: benmurden@github.com
License: BSD License
Description: django-intl-tel-input
        =====================
        
        A Django form widget based on the jQuery plugin `intl-tel-input`_.
        
        This is a new package, so it doesn’t implement all the features of
        intl-tel-input. However, it has been stable in testing, so if you’re
        still down…
        
        Installation
        ------------
        
        Install straight from the repo.
        
        .. code:: shell
        
            pip install -e git://github.com/benmurden/django-intl-tel-input.git#egg=django-intl-tel-input
        
        Add intl-tel-input to your INSTALLED\_APPS, so Django can find the init
        script.
        
        .. code:: python
        
            ...
            INSTALLED_APPS += ('intl_tel_input',)
            ...
        
        Usage
        -----
        
        Simply add ``IntlTelInputWidget`` to your form field.
        
        .. code:: python
        
            from intl_tel_input.widgets import IntlTelInputWidget
        
            class MyForm(forms.ModelForm):
                class Meta:
                    model = MyModel
                    fields = ['foo', 'bar']
                    widgets = {
                        'bar': IntlTelInputWidget()
                    }
            ...
        
        If you have included jQuery at the end of your document, then don’t
        forget to update the template when this widget appears with a
        ``{{ form.media.js }}``. Put it in a block that allows it to come after
        jQuery.
        
        .. _intl-tel-input: https://github.com/jackocnr/intl-tel-input
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.8
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
