Wachalarm-IP-Web/views/includes/modal_response.pug
2020-02-06 16:31:01 +01:00

50 lines
2.4 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// Modal
#responseModal.modal.fade(tabindex='-1', role='dialog', aria-hidden='true')
.modal-dialog.modal-dialog-centered(role='document')
.modal-content
.modal-header
h3#responseModalTitle.modal-title.text-danger Einsatzrückmeldung
button.close(type='button', data-dismiss='modal', aria-label='Close')
span(aria-hidden='true') ×
#responseModalBody.modal-body
p.text-muted Ich komme als ...
.form-group
.custom-control.custom-radio.form-control-lg
input#radios_res_ek.custom-control-input(type='radio', name='radios_res', value='1')
label.custom-control-label(for='radios_res_ek')
| Einsatzkraft
.custom-control.custom-radio.form-control-lg
input#radios_res_ma.custom-control-input(type='radio', name='radios_res', value='1')
label.custom-control-label(for='radios_res_ma')
| Maschinist
.custom-control.custom-radio.form-control-lg
input#radios_res_fk.custom-control-input(type='radio', name='radios_res', value='1')
label.custom-control-label(for='radios_res_fk')
| Führungskraft
div.border-top.my-3
.form-group
.custom-control.custom-switch
input#cb_res_agt.custom-control-input(type='checkbox')
label.custom-control-label.text-warning(for='cb_res_agt')
| und bin Atemschutzgeräteträger!
div.border-top.my-3
p.text-muted in ungefähr ...
.form-group
select#eintreffzeit.form-control.form-control-lg
option(value=null) bitte Eintreffzeit wählen
option(value='5') 5 Minuten
option(value='10') 10 Minuten
option(value='15') 15 Minuten
option(value='20') 20 Minuten
p.text-muted zur Wache ...
.form-group
select#wachenauswahl.form-control.form-control-lg
option(value=null) bitte Wache wählen
each val in einsatzdaten.wachen
option(value='#{val.wachenname}') #{val.wachenname}
//option(value='2') CB FW Cottbus 3
//option(value='3') CB FW Madlow
//option(value='4') CB FW Kieckebusch
.modal-footer
button#send_response.btn.btn-lg.btn-block.btn-warning.btn-outline-primary.ion-md-paper-plane(type='button', data-dismiss='modal') Rückmeldung absenden!