What problem does it solve?
This Skill helps you add new demo pages to the django-mvp demo app without duplicating view logic, template structure, or navigation wiring.
Core Features & Use Cases
- Single configurable view: Define one class-based view and vary behavior through .as_view() overrides instead of creating near-identical classes.
- Consistent page structure: Extend the shared base template, add breadcrumbs, and keep content blocks aligned with the project’s demo layout.
- Complete page wiring: Pair each demo view with a URL route and a sidebar menu item so the page is discoverable and easy to navigate.
- Use cases: Showcase a new widget, compare layout variants, or add a component demo page with optional toolbar actions and dynamic context.
Quick Start
Ask the AI to create a new django-mvp demo page using LayoutConfigMixin, a base.html template, a named URL pattern, and a matching sidebar menu entry.