## Django Style [](https://pypi.org/project/django-style/) [](https://django-style.readthedocs.io/en/latest/) [](https://github.com/radiac/django-style/actions/workflows/ci.yml) [](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](https://radiac-django-style-demo.nanodjango.dev), 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 %}
Hello world
{% endblock %} ```