forked from cms/tibi-svelte-starter
init
This commit is contained in:
24
api/templates/operator_contact_form_body.de.html
Normal file
24
api/templates/operator_contact_form_body.de.html
Normal file
@@ -0,0 +1,24 @@
|
||||
<html>
|
||||
<body>
|
||||
<h1>Kontaktformular</h1>
|
||||
<label>Vorname:</label> {{context.data.firstname}}<br />
|
||||
<label>Nachname:</label> {{context.data.lastname}}<br />
|
||||
<label>Email:</label> {{context.data.email}}<br />
|
||||
<label>PLZ:</label> {{context.data.postcode}}<br />
|
||||
|
||||
<h3>Nachricht</h3>
|
||||
<div style="white-space: pre-wrap">{{context.data.message}}</div>
|
||||
|
||||
<h4>Dateien</h4>
|
||||
<ul>
|
||||
{% for f in context.data.files %}
|
||||
<li>
|
||||
<a
|
||||
href="{{config.apiBase}}contact_form/{{context.data.id}}/{{f.file.src}}"
|
||||
>{{config.apiBase}}contact_form/{{context.data.id}}/{{f.file.src}}</a
|
||||
>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user