django_spire/core/management/commands/spire_opencode_pkg/skills/container-template/SKILL.md
How to implement container templates in Django Spire.
npx skillsauth add stratusadv/django-spire container-templateInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
└── partner/
└── conatiner/
└── detail_conatainer.html
The core container.html template provides:
container_title: Main page titlecontainer_button: Action buttons (use Django Spire buttons here)container_filter_section: Optional filter controlscontainer_content: Main content areacontainer_outer_class: Additional CSS classes for outer containercontainer_title_class: Additional CSS classes for titlecontainer_class: Additional CSS classes for content containercontainer_content_class: Additional CSS classes for content area{% extends 'django_spire/container/container.html' %}
{% block container_title %}User Management{% endblock %}
{% block container_button %}
{% include 'django_spire/button/primary_button.html' with button_text='Add User' button_url='/users/add/' %}
{% endblock %}
{% block container_content %}
<p>This is the user management page content.</p>
{% endblock %}
container_title for page headingscontainer_button blockcontainer_content blockdevelopment
How to implement table templates in Django Spire.
development
How to implement tab templates in Django Spire.
development
Service layer best practices on django models
development
Best practices for seeding django models