Metadata-Version: 2.1
Name: django-static-bootstrap
Version: 4.4.1.2
Summary: Django application contain bootstrap static files.
Home-page: https://github.com/zencore-cn/zencore-issues
Author: zencore
Author-email: dobetter@zencore.cn
License: MIT
Description: # django-static-bootstrap
        
        
        Django application contain bootstrap static files.
        
        
        ## Install
        
        ```shell
        pip install django-static-bootstrap
        ```
        
        ## Settings
        
        ```
        INSTALLED_APPS = [
            ...
            'django_static_bootstrap',
            ...
        ]
        ```
        
        ## Use static resource
        
        ```
        {% load staticfiles %}
        
        <link rel="stylesheet" href="{% static "bootstrap/css/bootstrap.min.css" %}">
        <script src="{% static "admin/js/vendor/jquery/jquery.js" %}"></script>
        <script src="{% static "bootstrap/js/bootstrap.min.js" %}"></script>
        ```
        
        - You can use django's jquery.js, but be careful about django's jquery.init.js. bootstrap/js/bootstrap.min.js must be loaded after jquery.js and before jquery.init.js.
        - If you are not using django framework, you can try django-static-jquery3>=5.0.0 to get jquery.js.
        
        ## About releases
        
        The first three number is the same with bootstrap project's version.
        The fourth number is our release number, it's optional.
        
        ## Releases
        
        ### v4.4.1.2 2020/09/08
        
        - No depends on django.
        
        ### v4.4.1 2020/02/27
        
        - Upgrade the resources to version 4.4.1.
        
        ### v3.3.7.1 2018/03/27
        
        - First release.
Keywords: django-static-bootstrap
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Description-Content-Type: text/markdown
