Django MVP
Get your Django project to a minimum viable product — fast. django-mvp gives you a polished, settings-configurable application layout (DaisyUI 5 + Tailwind CSS v4), a library of reusable django-cotton UI components, and enhanced class-based views with search, ordering and pagination out of the box. Things should just work.
Note: django-mvp is in active development (0.x). Import paths and component APIs may change between minor versions — see the CHANGELOG.
What you get
- A complete app shell — sidebar, navbar, content area, footer, and mobile dock
navigation, rendered around every page and configured from Django settings
(pydata-sphinx-theme style): sidebar collapse breakpoint, offcanvas vs. icon-rail
collapse, and navbar widgets are all
MVP_CONFIGkeys. - A Cotton component library — cards, buttons, grids, menus, dropdowns, pagination, hero sections and more, with small consistent attribute APIs. Need more control? Override the component's template in your project — that's the intended extension path, not a bigger API.
- Views that do the boring parts — list pages with admin-style search, whitelisted ordering and pagination; form pages rendered with crispy-forms; delete flows with related-object summaries and type-to-confirm; styled error pages.
- Menus in Python — sidebar and mobile-dock navigation via django-flex-menus, with active states, icons and badges handled for you.
- Icons by name — every icon resolves through django-easy-icons; swap the icon set from settings without touching templates.
- No build tooling required — a prebuilt stylesheet ships with the package. When your own templates need their own Tailwind classes, one management command generates the build config.
Scope & philosophy
django-mvp is an application UI framework for the Django apps you write yourself. It gives you the application chrome, a library of components, and views that carry a model through to a working set of pages, so that reaching a minimum viable product doesn't start with building a UI layer.
It also fills in where Django stops. Django ships the backend machinery for formsets and leaves you with nothing to render or drive them with, so this package renders them for you, with the same look, validation and error placement every other page gets. Closing that kind of gap is squarely the point of it.
Use it for admin dashboards, data-management tools, research portals, internal apps and SaaS back-offices: anywhere you want a production-looking, data-centric Django application without writing the front end first.
What it deliberately is not:
- An admin theme. It doesn't touch
django.contrib.admin. django-unfold and django-daisy serve that audience well. - A component engine. django-cotton provides the syntax; this package provides components built with it.
- A project scaffold. You install it as a dependency and upgrade it, rather than generating a starter project you then own outright.
- An authentication system. It provides the Account Center, the area itself. Account management — sign-in, sign-up, password and multi-factor flows — still lives in django-accounts-center, which builds on these components.
- A JavaScript application. Pages are server-rendered, with Alpine and htmx where interaction calls for it. No build step, no single-page frontend.
- An API layer. Django REST Framework and django-ninja already cover that ground.
- Real-time infrastructure. Websockets and Channels are out of scope.
Principles, in the order they settle a close call:
- Things should just work. Sensible defaults, minimum ceremony, MVP first.
- Configuration before customization. Views are configured declaratively, much as Django's admin classes are. When the packaged look isn't right, override the Cotton component and honour its attributes. Past that, bring your own CSS.
- Basic components, not a component framework. Small attribute APIs and limited variation. A component earns its place here by being useful more than once, and a specialized one belongs in a package of its own. Cotton finds components in any installed app, so a component pack needs no registration.
- Integrate, don't reimplement. Django's third-party ecosystem already covers a great deal of this ground, but most of those packages still leave you to adapt their output into your own templates before it looks like part of your application. Rather than rewriting well-established packages, django-mvp puts a consistent UI around them wherever it can.
Where the package is headed is a separate question, answered in GOALS.md.
Quick start
pip install django-mvp
# settings.py
INSTALLED_APPS = [
...
"your_app", # your apps above "mvp" — see below
"django.contrib.sites",
"django_cotton",
"easy_icons",
"flex_menu",
"mvp",
"crispy_forms",
"crispy_tailwind", # must come after "mvp" — see Getting Started
]
Order matters here. Django's template loader walks INSTALLED_APPS top to bottom and
takes the first copy of a name it finds, so list your own apps above mvp to
override any template django-mvp ships. This is the same rule projects already use to
override the Django admin's templates.
Note that it does not follow that mvp belongs at the bottom of the list. mvp has to
stay above crispy_tailwind, whose help-text template it overrides by the same
mechanism. Raise your own apps rather than lowering mvp. See
Getting Started for both halves of the rule.
# settings.py, continued
TEMPLATES = [{
...
"OPTIONS": {"context_processors": [
...
"mvp.context_processors.mvp_config",
]},
}]
EASY_ICONS = {
"default": {
"renderer": "easy_icons.renderers.ProviderRenderer",
"config": {"tag": "i"},
"packs": ["mvp.utils.BS5_ICONS"], # icons used by mvp's own components
},
}
FLEX_MENUS = {
"renderers": {
"sidebar": "mvp.renderers.SidebarRenderer",
"dock": "mvp.renderers.MobileFooterNavRenderer",
},
}
CRISPY_ALLOWED_TEMPLATE_PACKS = ["tailwind"]
CRISPY_TEMPLATE_PACK = "tailwind"
{# templates/dashboard.html #}
{% extends "mvp/base.html" %}
{% block content %}
<c-container>
<c-section title="Dashboard" icon="home">
<c-grid md="2" xl="4">
<c-card title="Orders">150 new</c-card>
<c-card title="Revenue">$12,400</c-card>
</c-grid>
</c-section>
</c-container>
{% endblock %}
Full walkthrough: Getting Started.
Configure the layout from settings
MVP_CONFIG = {
"layout": {
"sidebar": {
"breakpoint": "lg", # sm|md|lg|xl|2xl — when the sidebar is persistent
"collapse": "offcanvas", # "offcanvas" (slide away) or "icons" (icon rail)
},
"navbar": {
# Cotton component names, rendered at the right end of the navbar
"end": ["actions.theme-controller", "actions.language-switcher"],
},
},
}
Per-page overrides use component attributes (<c-app breakpoint="xl">,
<c-app.sidebar collapse="icons">). Details: Layout.
Views in one line each
from mvp.views import MVPListView, MVPCreateView, MVPUpdateView, MVPDeleteView
class ProductListView(MVPListView):
model = Product
search_fields = ["name", "description"] # ?q= multi-word search
order_by = [("name_asc", "Name (A-Z)", "name")] # ?o= whitelisted ordering
class ProductCreateView(MVPCreateView):
model = Product
fields = ["name", "category", "price"] # crispy-detected rendering
Details: Views.
Menus in Python
# myapp/menus.py
from flex_menu import MenuItem
from mvp.menus import AppMenu
AppMenu.extend([
MenuItem(name="dashboard", view_name="dashboard",
extra_context={"label": "Dashboard", "icon": "home"}),
])
Details: Navigation.
Optional integrations
Views that build on third-party packages live in guarded modules — no extras, and the dependency is only required when you import the integration:
from mvp.integrations.django_tables.views import MVPTableView # django-tables2
from mvp.integrations.django_filters.views import MVPFilteredListView # django-filter
Details: Integrations.
Styling & Theming
Django MVP is styled with Tailwind CSS v4 + DaisyUI 5 and ships a prebuilt stylesheet with the complete DaisyUI component set and every DaisyUI theme. Most projects need no build tooling at all.
Set MVP_CONFIG["theme"]["default"] to any DaisyUI theme name (dracula,
synthwave, ...) and it applies with no build step and nothing fetched from
outside your project. Offer a choice of themes to visitors through
MVP_CONFIG["theme"]["choices"], or write your own theme as a plain CSS file.
See docs/theming.md
for the full variable reference and a worked example.
If your own templates use their own Tailwind utility classes, rebuild the CSS with the generated entry file, which scans your templates and Django MVP's:
npm install -D tailwindcss @tailwindcss/cli daisyui
python manage.py mvp_tailwind > assets/tailwind.css
npx @tailwindcss/cli -i assets/tailwind.css -o static/css/app.css --minify
See docs/styling.md for the full guide (two-tier model, theming, and the packaged Tailwind preset).
Documentation
Start at docs/index.md: Getting Started · Layout · Components · Navigation · Views · Styling · Integrations.
Building with an AI coding assistant
skills/django-mvp/
is a skill file written for coding agents. Point your assistant at it, or copy the directory
into wherever it loads skills from. SKILL.md is a short map — the decisions to get right
first, then a routing table into references/. Those files cover setup, configuration,
layout, menus, icons, views, forms, components, styling, integrations and troubleshooting,
one topic each. Keeping it current is a condition of merging, so it will not point you at an
API that has moved.
Requirements
- Python 3.12+
- Django 5.2+ (currently supported Django releases)
- django-cotton, django-flex-menus, django-easy-icons (installed automatically)
Contributing
Contributions welcome! When adding components: use <c-vars /> for defaults, no ghost
attributes, include ARIA attributes, and add tests (tests/test_components/ renders
every packaged component). Rebuild the stylesheet with invoke build-stylesheet when
templates change classes, and commit the result — the built CSS ships in the wheel, and
CI only checks that it still compiles, so keeping it current is up to the author.
License
MIT License — see LICENSE.
Acknowledgments
Built with django-cotton by @wrabit, DaisyUI, Tailwind CSS, Alpine.js, htmx and Bootstrap Icons.
Release files for django-mvp 0.22.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| django_mvp-0.22.0.tar.gz | 270.5 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| django_mvp-0.22.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 581.3 kB
Release files / django_mvp-0.22.0.tar.gz
| Download URL | django_mvp-0.22.0.tar.gz |
|---|---|
| Size | 270.5 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
ef9a6dcbf913bc9c1dfe35f647e0adf3a11277192b746eb12ea415363306faed
|
|
BLAKE2b-256 checksum How to use checksums |
ac69aef8036c1e5664ca3d93e4842b90d8323c9073f0005a5c3ace53aafb7244
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 15, 2026.
Transparency logRelease files / django_mvp-0.22.0-py3-none-any.whl
| Download URL | django_mvp-0.22.0-py3-none-any.whl |
|---|---|
| Size | 310.9 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
2c94e2b9d2d6a491d1d3e6ea53715847c5a30cc5317bf7572e8951008722439a
|
|
BLAKE2b-256 checksum How to use checksums |
d4f47e3b6eae6878a41915acc459ff30431ae01ba5142c3423faa20f0d59dbdc
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 15, 2026.
Transparency log