Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Lazar73a committed Jan 22, 2024
2 parents 06b57bf + 1b8ce4f commit ea15b19
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/components/verleih/VerleihItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
<router-link :to="detailUrl">
<b-card :img-src="image" img-top>
<b-card-title>{{ verleih.name }}</b-card-title>
<b-card-text>Lore ipsum </b-card-text>
</b-card>
</router-link>
</template>
Expand Down
15 changes: 15 additions & 0 deletions src/views/EventDetailView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,21 @@
<span id="street">{{ events.adresse }}</span><br />
<span id="zipCode">{{ events.plz }}</span> <span id="city">{{ events.ort }}</span>
</address>

<h4>Datum</h4>
<date>
<span> {{ events.datum }} </span>
</date>

<h5>Uhrzeit</h5>
<openingHours>
<span>{{ events.uhrzeit }}</span>
</openingHours>

<h6>Eintrittspreis</h6>
<price>
<span>{{ events.eintrittspreis}}</span>
</price>

</div>
</div>
Expand Down
17 changes: 17 additions & 0 deletions src/views/VerleihDetailView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,23 @@
<span id="zipCode">{{ verleih.plz }}</span> <span id="city">{{ verleih.ort }}</span>
</address>

<h4>Kontaktdaten</h4>
<contactDetails>
<p>Telefon: <span> {{ verleih.telefon }} </span></p>
<p>Email:<span>{{ verleih.email }}</span> </p>
</contactDetails>

<h5>Öffnungszeiten</h5>
<openingHours>
<p>Öffnungstage<span>{{ verleih.oeffnungstage }}</span></p>
<p>Öffnungszeit<span>{{ verleih.oeffnungszeiten }}</span></p>
</openingHours>

<h6>Webseite</h6>
<website>
<span>{{ verleih.webseite}}</span>
</website>

</div>
</div>
</template>
Expand Down

0 comments on commit ea15b19

Please sign in to comment.