mirror of
https://github.com/jbcr/core.git
synced 2026-04-05 07:42:21 +02:00
10 lines
354 B
Twig
10 lines
354 B
Twig
{% extends '@bolt/editcontent/fields/_base.twig' %}
|
|
|
|
{% block field %}
|
|
<label>{{ label }}</label>
|
|
<input name="{{ name }}" placeholder="…" type="number" step="1" value="{{ value }}" class="{{ class }}" {{ attributes|default()|raw }}>
|
|
|
|
<mark>Note: This field is practically the same as the <code>integer</code>-field.</mark>
|
|
|
|
{% endblock %}
|