pax_global_header 0000666 0000000 0000000 00000000064 14550450640 0014515 g ustar 00root root 0000000 0000000 52 comment=ae77d38fa654a171977ab2c12a2facc1925d6fef crispy-bootstrap3-2024.1/ 0000775 0000000 0000000 00000000000 14550450640 0015214 5 ustar 00root root 0000000 0000000 crispy-bootstrap3-2024.1/.github/ 0000775 0000000 0000000 00000000000 14550450640 0016554 5 ustar 00root root 0000000 0000000 crispy-bootstrap3-2024.1/.github/workflows/ 0000775 0000000 0000000 00000000000 14550450640 0020611 5 ustar 00root root 0000000 0000000 crispy-bootstrap3-2024.1/.github/workflows/publish.yml 0000664 0000000 0000000 00000003131 14550450640 0023000 0 ustar 00root root 0000000 0000000 name: Publish Python Package on: release: types: [created] jobs: test: runs-on: ubuntu-latest name: Python ${{ matrix.python-version }} strategy: matrix: python-version: - '3.8' - '3.9' - '3.10' - '3.11' steps: - uses: actions/checkout@v3 - uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} - uses: actions/cache@v3 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('requirements/*.txt') }} restore-keys: | ${{ runner.os }}-pip- - name: Upgrade packaging tools run: python -m pip install --upgrade pip setuptools virtualenv wheel - name: Install dependencies run: python -m pip install --upgrade tox - name: Run tox targets for ${{ matrix.python-version }} run: | ENV_PREFIX=$(tr -C -d "0-9" <<< "${{ matrix.python-version }}") TOXENV=$(tox --listenvs | grep "^py$ENV_PREFIX" | tr '\n' ',') tox - name: Run lint if: ${{ matrix.python-version == '3.9' }} run: | tox -e lint deploy: runs-on: ubuntu-latest needs: [test] steps: - uses: actions/checkout@v3 - name: Set up Python uses: actions/setup-python@v4 with: python-version: "3.10" - name: Install dependencies run: | pip install build twine - name: Publish env: TWINE_USERNAME: __token__ TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }} run: | python -m build twine upload dist/* crispy-bootstrap3-2024.1/.github/workflows/test.yml 0000664 0000000 0000000 00000002153 14550450640 0022314 0 ustar 00root root 0000000 0000000 name: CI on: push: branches: - main pull_request: jobs: tests: name: Python ${{ matrix.python-version }} runs-on: ubuntu-latest strategy: matrix: python-version: - '3.8' - '3.9' - '3.10' - '3.11' steps: - uses: actions/checkout@v3 - uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} - uses: actions/cache@v3 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('requirements/*.txt') }} restore-keys: | ${{ runner.os }}-pip- - name: Upgrade packaging tools run: python -m pip install --upgrade pip setuptools virtualenv wheel - name: Install dependencies run: python -m pip install --upgrade tox - name: Run tox targets for ${{ matrix.python-version }} run: | ENV_PREFIX=$(tr -C -d "0-9" <<< "${{ matrix.python-version }}") TOXENV=$(tox --listenvs | grep "^py$ENV_PREFIX" | tr '\n' ',') tox - name: Run lint if: ${{ matrix.python-version == '3.9' }} run: | tox -e lint crispy-bootstrap3-2024.1/.gitignore 0000664 0000000 0000000 00000000163 14550450640 0017204 0 ustar 00root root 0000000 0000000 .venv __pycache__/ *.py[cod] *$py.class venv .eggs .pytest_cache *.egg-info .DS_Store .vscode *python-version .tox crispy-bootstrap3-2024.1/CHANGELOG.md 0000664 0000000 0000000 00000000435 14550450640 0017027 0 ustar 00root root 0000000 0000000 # CHANGELOG FOR CRISPY-BOOTSTRAP3 ## 2024.1 * Updated supported versions: * Django 3.2, 4.2 and 5.0. * Python 3.8+. * Fixed form-control class issue with checkboxes. ## 2022.1 * Initial release to move the template pack from core crispy-forms to a standalone template pack. crispy-bootstrap3-2024.1/LICENSE 0000664 0000000 0000000 00000002060 14550450640 0016217 0 ustar 00root root 0000000 0000000 Copyright (c) 2022 David Smith and contributors. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. crispy-bootstrap3-2024.1/MANIFEST.in 0000664 0000000 0000000 00000000322 14550450640 0016747 0 ustar 00root root 0000000 0000000 include LICENSE include MANIFEST.in recursive-include crispy_bootstrap3/templates * include *.md include tox.ini recursive-include requirements *.txt recursive-include tests *.html recursive-include tests *.py crispy-bootstrap3-2024.1/README.md 0000664 0000000 0000000 00000001541 14550450640 0016474 0 ustar 00root root 0000000 0000000 # crispy-bootstrap3 [](https://github.com/django-crispy-forms/crispy-bootstrap3/blob/main/LICENSE) Bootstrap3 template pack for django-crispy-forms. This template pack was included with the core django-crispy-forms package until version 2.0. ## Installation Install this plugin using `pip`: ```bash $ pip install crispy-bootstrap3 ``` ## Usage You will need to update your project's settings file to add `crispy_forms` and `crispy_bootstrap3` to your projects `INSTALLED_APPS`. Also set `bootstrap3` as and allowed template pack and as the default template pack for your project: ```python INSTALLED_APPS = ( ... "crispy_forms", "crispy_bootstrap3", ... ) CRISPY_ALLOWED_TEMPLATE_PACKS = "bootstrap3" CRISPY_TEMPLATE_PACK = "bootstrap3" ``` crispy-bootstrap3-2024.1/crispy_bootstrap3/ 0000775 0000000 0000000 00000000000 14550450640 0020705 5 ustar 00root root 0000000 0000000 crispy-bootstrap3-2024.1/crispy_bootstrap3/__init__.py 0000664 0000000 0000000 00000000027 14550450640 0023015 0 ustar 00root root 0000000 0000000 __version__ = "2024.1" crispy-bootstrap3-2024.1/crispy_bootstrap3/templates/ 0000775 0000000 0000000 00000000000 14550450640 0022703 5 ustar 00root root 0000000 0000000 crispy-bootstrap3-2024.1/crispy_bootstrap3/templates/bootstrap3/ 0000775 0000000 0000000 00000000000 14550450640 0025003 5 ustar 00root root 0000000 0000000 crispy-bootstrap3-2024.1/crispy_bootstrap3/templates/bootstrap3/accordion-group.html 0000664 0000000 0000000 00000000711 14550450640 0030763 0 ustar 00root root 0000000 0000000