Files
fastapi-admin/fastapi_admin/templates/widgets/inputs/textarea.html
2021-04-25 17:17:21 +08:00

8 lines
289 B
HTML

<div class="form-group mb-3">
<label class="form-label">{{ label }}</label>
<textarea {% if not null %}required{% endif %} class="form-control" name="{{ name }}" placeholder="{{ placeholder }}"
{% if disabled %}disabled{% endif %}>
{{ value }}
</textarea>
</div>