在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用form-views
星标3
分支1
更新时间2026年2月16日 14:52
Examples on how we build our form views.
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Examples on how we build our form views.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Service layer best practices on django models
How to implement badges in html templates.
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.
基于 SOC 职业分类
| name | form-views |
| description | Examples on how we build our form views. |
form_page.html
{% extends 'django_spire/page/form_full_page.html' %}
{% block full_page_content %}
<div class="row g-3">
<div class="col-12">
{% include 'friend/card/form_card.html' %}
</div>
</div>
{% endblock %}
form_card.html
{% extends 'django_spire/card/title_card.html' %}
{% block card_title %}
Friend
{% endblock %}
{% block card_title_content %}
{% include 'friend/form/form.html' %}
{% endblock %}
form.html
<form
method="POST"
x-data="{
async init() {
await this.friend.get()
},
friend: new ModelObjectGlue('friend')
}"
>
{% csrf_token %}
{% include 'django_spire/element/divider_element.html' with divider_title='Personal Information' %}
<div class="row g-3 mb-3">
<div class="col-md-4">
{% include 'django_glue/form/field/char_field.html' with glue_model_field='friend.first_name' %}
</div>
<div class="col-md-4">
{% include 'django_glue/form/field/char_field.html' with glue_model_field='friend.middle_name' %}
</div>
<div class="col-md-4">
{% include 'django_glue/form/field/char_field.html' with glue_model_field='friend.last_name' %}
</div>
</div>
{% include 'django_spire/element/divider_element.html' with divider_title='Personal Details' %}
<div class="row g-3 mb-3">
<div class="col-md-6">
{% include 'django_glue/form/field/date_field.html' with glue_model_field='friend.birth_date' %}
</div>
<div class="col-md-6">
{% include 'django_glue/form/field/char_field.html' with glue_model_field='friend.favorite_colour' %}
</div>
</div>
{% include 'django_spire/element/divider_element.html' with divider_title='Relationship Information' %}
<div class="row g-3 mb-3">
<div class="col-md-6">
{% include 'django_glue/form/field/select_field.html' with glue_model_field='friend.love_language' %}
</div>
<div class="col-md-6">
{% include 'django_glue/form/field/select_field.html' with glue_model_field='friend.relationship_values' %}
</div>
</div>
<div class="row g-3 mb-3">
<div class="col-12">
{% include 'django_glue/form/field/text_field.html' with glue_model_field='friend.favorite_memories' %}
</div>
</div>
<div class="row">
<div class="col-12">
{% include 'django_spire/contrib/form/button/form_submit_button.html' %}
</div>
</div>
</form>