13 lines
540 B
HTML
13 lines
540 B
HTML
{{ define "participant" }}
|
|
<div id="participant-{{ .ID }}">
|
|
<label for="participant-first-input-{{ .ID }}">Vorname</label>
|
|
<input type="text" name="participant-first" id="participant-first-input-{{ .ID }}" />
|
|
|
|
<label for="participant-last-input-{{ .ID }}">Nachname</label>
|
|
<input type="text" name="participant-last" id="participant-last-input-{{ .ID }}" />
|
|
|
|
<label for="participant-company-input-{{ .ID }}">Firma</label>
|
|
<input type="text" name="participant-company" id="participant-company-input-{{ .ID }}" />
|
|
</div>
|
|
{{ end }}
|