在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用badge-template
星标3
分支1
更新时间2026年2月24日 22:52
How to implement badges in html templates.
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
How to implement badges in html templates.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | badge-template |
| description | How to implement badges in html templates. |
└── 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 %}
Service layer best practices on django models
How to implement Django Spire buttons in HTML templates.
How to implement container templates in Django Spire.
How to implement tab templates in Django Spire.
How to implement table templates in Django Spire.
Best practice for working with Django models