{% set current_theme = current_theme() %} {% from "macros/form_buttons.j2" import render_form_buttons %} {% from "macros/form_errors.j2" import render_field_errors, render_form_errors %} {{ current_theme.headertags() }} {% if enlace %} {{ _("Editar Enlace: ") }}{{ enlace.titulo }} {% else %} {{ _("Nuevo Enlace Útil") }} {% endif %} {{ current_theme.local_style() }} {{ current_theme.navbar() }}
{{ current_theme.notify() }}

{% if enlace %} {{ _("Editar Enlace: ") }}{{ enlace.titulo }} {% else %} {{ _("Nuevo Enlace Útil") }} {% endif %}

{{ form.hidden_tag() }}
{{ form.titulo(class="form-control", id="titulo") }} {{ render_field_errors(form.titulo) }} {{ _("Texto que se mostrará en el footer.") }}
{{ form.url(class="form-control", id="url", placeholder="https://ejemplo.com") }} {{ render_field_errors(form.url) }} {{ _("URL completa del enlace (debe incluir http:// o https://).") }}
{{ form.orden(class="form-control", id="orden", type="number", min="0") }} {{ render_field_errors(form.orden) }} {{ _("Los enlaces se ordenan de menor a mayor. Usar 0 para el primer enlace.") }}
{{ form.activo(class="form-check-input", id="activo") }} {{ render_field_errors(form.activo) }}
{{ _("Cancelar") }}