102 lines
2.4 KiB
HTML
102 lines
2.4 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Mitglied</title>
|
|
</head>
|
|
<body>
|
|
<h1>
|
|
{{member.salutation.salutation}} {{member.lastname}}, {{member.firstname}}{{#if member.nameaffix}} -
|
|
{{member.nameaffix}}{{/if}}
|
|
</h1>
|
|
<p>Mitglieds-Ausdruck Stand {{longdate today}}</p>
|
|
<br />
|
|
|
|
<p>geboren: {{date member.birthdate}}</p>
|
|
<p>eingetreten: {{date member.firstMembershipEntry.start}}</p>
|
|
{{#if member.lastMembershipEntry?.end}}
|
|
<p>ausgetreten: {{date member.lastMembershipEntry.end}}</p>
|
|
{{/if}} {{#if memberships.length}}
|
|
<br />
|
|
<h2>Mitgliedschaften</h2>
|
|
{{#each memberships}}
|
|
<div>
|
|
<h3>{{this.status.status}}: {{date this.start}} bis {{#if this.end}}{{date this.end}}{{else}}heute{{/if}}</h3>
|
|
{{#if this.terminationReason}}
|
|
<p>beendet, weil:{{this.terminationReason}}</p>
|
|
{{/if}}
|
|
</div>
|
|
<br />
|
|
{{/each}} {{/if}} {{#if positions.length}}
|
|
<br />
|
|
<h2>Vereinsämter</h2>
|
|
{{#each positions}}
|
|
<div>
|
|
<h3>
|
|
{{this.executivePosition.position}}: {{date this.start}} bis {{#if this.end}}{{date
|
|
this.end}}{{else}}heute{{/if}}
|
|
</h3>
|
|
{{#if this.note}}
|
|
<p>Notiz: {{this.note}}</p>
|
|
{{/if}}
|
|
</div>
|
|
<br />
|
|
{{/each}} {{/if}} {{#if awards.length}}
|
|
<br />
|
|
<h2>Auszeichnungen</h2>
|
|
{{#each awards}}
|
|
<div>
|
|
<h3>{{this.award.award}}: {{date this.date}}</h3>
|
|
{{#if this.given}}
|
|
<p>wurde vergeben</p>
|
|
{{else}}
|
|
<p>wurde verwehrt / zurückgewiesen</p>
|
|
{{/if}} {{#if this.note}}
|
|
<p>Notiz: {{this.note}}</p>
|
|
{{/if}}
|
|
</div>
|
|
<br />
|
|
{{/each}} {{/if}} {{#if qualifications.length}}
|
|
<br />
|
|
<h2>Qualifikationen</h2>
|
|
{{#each qualifications}}
|
|
<div>
|
|
<h3>{{this.qualification.qualification}}: {{date this.date}}</h3>
|
|
{{#if this.terminationReason}}
|
|
<p>beendet, weil:{{this.terminationReason}}</p>
|
|
{{/if}} {{#if this.note}}
|
|
<p>Notiz: {{this.note}}</p>
|
|
{{/if}}
|
|
</div>
|
|
<br />
|
|
{{/each}} {{/if}}
|
|
</body>
|
|
<style>
|
|
h2,
|
|
h3,
|
|
p,
|
|
span,
|
|
ul,
|
|
li {
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
h1,
|
|
h2 {
|
|
color: #990b00;
|
|
}
|
|
|
|
h2 {
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
table,
|
|
th,
|
|
td {
|
|
border: 1px solid black;
|
|
border-collapse: collapse;
|
|
text-align: start;
|
|
}
|
|
</style>
|
|
</html>
|