django_spire/core/management/commands/spire_opencode_pkg/skills/badge_templates/SKILL.md
How to implement badges in html templates.
npx skillsauth add stratusadv/django-spire badge-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.
└── template/ └── partner/ └── badge/ └── type_badge.html
{% include 'django_spire/badge/accent_badge.html' with badge_text='Example' %}
{% include 'django_spire/badge/base_badge.html' with badge_text='Example' %}
{% include 'django_spire/badge/danger_badge.html' with badge_text='Example' %}
{% include 'django_spire/badge/primary_badge.html' with badge_text='Example' %}
{% include 'django_spire/badge/primary_outlined_badge.html' with badge_text='Example' %}
{% include 'django_spire/badge/secondary_badge.html' with badge_text='Example' %}
{% include 'django_spire/badge/secondary_outlined_badge.html' with badge_text='Example' %}
{% include 'django_spire/badge/success_badge.html' with badge_text='Example' %}
{% include 'django_spire/badge/warning_badge.html' with badge_text='Example' %}
templates/partner/badge/type_badge.html
{% if partner.type == 'ven' %}
{% include 'django_spire/badge/success_badge.html' with badge_text=partner.get_type_display %}
{% elif employee_state == 'cli' %}
{% include 'django_spire/badge/primary_badge.html' with badge_text=partner.get_type_display %}
{% else %}
{% include 'django_spire/badge/secondary.html' with badge_text=partner.get_type_display %}
{% endif %}
{% include 'django_spire/element/attribute_element.html' with attribute_title='Inventory Count' %}
{% include 'django_spire/badge/accent_badge.html' with badge_text=inventory.count %}
development
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