Metadata-Version: 1.1
Name: django-language-flags
Version: 0.1.1
Summary: A simple Django app to display national flags for languages.
Home-page: https://github.com/anselmlingnau/django-language-flags
Author: Anselm Lingnau
Author-email: anselm@anselms.net
License: BSD License
Description: ==============
        Language-Flags
        ==============
        
        Flags is a simple Django app that helps display national flags. For
        efficiency, there is just one huge PNG file with all the flags, and
        individual flags are selected for display using CSS trickery.
        
        Quick start
        -----------
        
        1. Add "language_flags" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = [
                ...
        	'language_flags',
            ]
        
        2. In templates where you want to use language_flags, include the
           language_flags template tag library::
        
            {% load language_flags_tags %}
        
        3. You can use the `flags_for_language` tag to display a number
           of flags of nations where a language is spoken. Right now the
           language can be either English or German::
        
            {% flags_for_language COUNT LANGUAGE %}
        
           This will display COUNT flags for language LANGUAGE; the flags will
           always include the first country listed for LANGUAGE, while the
           remainder will be randomly selected from the other countries.
        
        Acknowledgments
        ---------------
        
        The flag sprite was downloaded from https://www.flag-sprites.com and
        is derived from the FamFamFam flag icon set at
        http://www.famfamfam.com/lab/icons/flags/.
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
