.
This commit is contained in:
@@ -418,6 +418,68 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="relative bg-base-200 border border-base-300 rounded-lg p-4">
|
||||||
|
<div class="card-body">
|
||||||
|
|
||||||
|
<div class="flex-shrink-0 bg-gray-100 flex flex-col border text-xl rounded-lg p-4">
|
||||||
|
|
||||||
|
<h3 class="font-bold">Ausweisdaten</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<td>Anlass</td>
|
||||||
|
<td>{ausweis.ausstellgrund}</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Gebäudetyp</td>
|
||||||
|
<td>{aufnahme.gebaeudetyp}</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Anzahl Wohneinheiten</td>
|
||||||
|
<td>{aufnahme.einheiten}</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Gebäudeteil</td>
|
||||||
|
<td>{aufnahme.gebaeudeteil}</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<h3 class="font-bold">Heizverbräuche ({ausweis.einheit_1}, {ausweis.einheit_2})</h3>
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<td>{ausweis.brennstoff_1}<br>{ausweis.brennstoff_2}</td>
|
||||||
|
<td>{ausweis.verbrauch_1}, {ausweis.verbrauch_2}, {ausweis.verbrauch_3}<br>{ausweis.verbrauch_4}, {ausweis.verbrauch_5}, {ausweis.verbrauch_6}</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>{ausweis.warmwasser_enthalten ? "Warmwasser enthalten" : "Warmwasser nicht enthalten"}</td>
|
||||||
|
<td>{ausweis.anteil_warmwasser}</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Alternative Energieversorgung</td>
|
||||||
|
<td>{aufnahme.alternative_heizung ? "Heizung" : ""}, {aufnahme.alternative_warmwasser ? "Warmwasser" : ""} {aufnahme.alternative_lueftung ? "Lüftung" : ""} {aufnahme.alternative_kuehlung ? "Kühlung" : ""}</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Leerstand</td>
|
||||||
|
<td>{aufnahme.leerstand}</td>
|
||||||
|
</tr>
|
||||||
|
<!-- <tr>
|
||||||
|
<td>{aufnahme.lueftung}</td>
|
||||||
|
<td>{aufnahme.kuehlung}</td>
|
||||||
|
</tr> -->
|
||||||
|
<!-- <tr>
|
||||||
|
<td>Sanierungszustand: Zentralheizung</td>
|
||||||
|
</tr> -->
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
@@ -49,7 +49,7 @@
|
|||||||
|
|
||||||
<div class="relative bg-gray-100 rounded-md flex justify-center items-center">
|
<div class="relative bg-gray-100 rounded-md flex justify-center items-center">
|
||||||
{#if aufnahme.bilder.length > 0}
|
{#if aufnahme.bilder.length > 0}
|
||||||
<Carousel perPage={3}>
|
<Carousel perPage={4}>
|
||||||
{#each aufnahme.bilder as bild, i (i)}
|
{#each aufnahme.bilder as bild, i (i)}
|
||||||
<img src="/bilder/{bild.id}.jpg" alt={bild.kategorie} class="max-h-[15vh] h-full w-full object-contain">
|
<img src="/bilder/{bild.id}.jpg" alt={bild.kategorie} class="max-h-[15vh] h-full w-full object-contain">
|
||||||
{/each}
|
{/each}
|
||||||
|
|||||||
Reference in New Issue
Block a user