Metadata-Version: 2.4
Name: django-style
Version: 0.1.2
Summary: Basic tasteful designs for your Django project
Author-email: Richard Terry <code@radiac.net>
License-Expression: BSD-3-Clause
Project-URL: Homepage, https://radiac.net/projects/django-style/
Project-URL: Documentation, https://django-style.readthedocs.io/en/latest/
Project-URL: Source, https://github.com/radiac/django-style
Project-URL: Bug Tracker, https://github.com/radiac/django-style/issues
Keywords: django,style,theme
Classifier: Development Status :: 4 - Beta
Classifier: Framework :: Django
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: Django>=4.2
Dynamic: license-file

## Django Style

[![PyPI](https://img.shields.io/pypi/v/django-style.svg)](https://pypi.org/project/django-style/)
[![Documentation](https://readthedocs.org/projects/django-style/badge/?version=latest)](https://django-style.readthedocs.io/en/latest/)
[![Tests](https://github.com/radiac/django-style/actions/workflows/ci.yml/badge.svg)](https://github.com/radiac/django-style/actions/workflows/ci.yml)
[![Coverage](https://codecov.io/gh/radiac/django-style/branch/main/graph/badge.svg?token=BCNM45T6GI)](https://codecov.io/gh/radiac/django-style)

Basic tasteful designs for your Django project, with sensible defaults.

Features:

* Themes for plain CSS, Tailwind 4, and Bootstrap 5
* Mobile support
* App layout for content with a complex UI
* Basic menu support

This project won't replace a proper design, but can help make your prototypes pretty.

Pairs particularly well with [nanodjango](https://github.com/radiac/nanodjango/).

### Example

To play with a live example, you can try the
[live demo](http://django-style.demo.radiac.net),
or download
[example.py](https://raw.githubusercontent.com/radiac/django-style/refs/heads/main/example.py)
and run with [uv](https://docs.astral.sh/uv/getting-started/installation/):

```
uvx --with django-style nanodjango run example.py
```

### Quickstart

1.  Install:
    ```
    pip install django-style
    ```

2.  **For Django**: Add it to `INSTALLED_APPS` in your `settings.py`, and optionally
    configure it:
    ```
    INSTALLED_APPS = [
        ...
        "django_style",
    ]

    STYLE_THEME = "tailwind"  # or "simple" (default) or "bootstrap"
    STYLE_IS_APP = True  # enable app layout (default is False)
    ```

    **For nanodjango**: it will automatically add itself to INSTALLED_APPS; you can
    configure it using the ``Django`` constructor::
    ```
    app = Django(STYLE_THEME="tailwind")
    ```

3.  Extend `base.html` in your templates:
    ```
    {% extends "base.html" %}
    {% block content %}
        <p>Hello world</p>
    {% endblock %}
    ```
