27 lines
797 B
HTML
27 lines
797 B
HTML
<div class="form-group">
|
|
{{ form.title.errors }}
|
|
<label for="{{ form.title.id_for_label }}">Title</label>
|
|
{{ form.title }}
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
{{ form.summary.errors }}
|
|
<label for="{{ form.summary.id_for_label }}">Summary</label>
|
|
{{ form.summary }}
|
|
</div>
|
|
|
|
<div class="form-row">
|
|
<div class="form-group">
|
|
{{ form.category.errors }}
|
|
<label for="{{ form.category.id_for_label }}">Category</label>
|
|
{{ form.category }}
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
{{ form.description.errors }}
|
|
<label for="{{ form.description.id_for_label }}">Description</label>
|
|
{{ form.description }}
|
|
<p class="bio-help"><i class="fas fa-info-circle"></i> Supports Markdown — headings, lists, links, code, tables and more.</p>
|
|
</div>
|