{% 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() }} {{ _('Crear Nueva Plantilla') }} {{ current_theme.local_style() }} {{ current_theme.navbar() }}
{{ current_theme.notify() }}

{{ _('Emitir un nuevo Certificado') }}.

{{ form.csrf_token }} {{ render_form_errors(form) }}
{{ form.usuario(class="form-control") }} {{ render_field_errors(form.usuario) }}
{{ form.content_type(class="form-control", id="content_type") }} {{ render_field_errors(form.content_type) }}
{{ form.curso(class="form-control") }} {{ render_field_errors(form.curso) }}
{{ form.template(class="form-control") }} {{ render_field_errors(form.template) }}
{{ form.nota(class="form-control") }} {{ render_field_errors(form.nota) }}
{{ render_form_buttons(_('Crear Certificado'), "/certificate/list") }}