Improvement of logout. Added Sacrital Service. Added website link for event places and direct link to other websites in worship overview

This commit is contained in:
Torsten Schulz
2024-09-06 16:34:17 +02:00
parent a869f2d16a
commit 5c6cfa41ab
14 changed files with 139 additions and 32 deletions

View File

@@ -10,6 +10,8 @@
<input type="text" id="zipcode" v-model="newEventPlace.zipcode" placeholder="PLZ" required>
<label for="city">Stadt:</label>
<input type="text" id="city" v-model="newEventPlace.city" placeholder="Stadt" required>
<label for="city">Webseite:</label>
<input type="text" id="website" v-model="newEventPlace.website" placeholder="Webseite" required>
<label for="backgroundColor">Hintergrundfarbe:</label>
<input type="color" id="backgroundColor" v-model="newEventPlace.backgroundColor">
<button type="submit">Speichern</button>
@@ -47,7 +49,8 @@ export default {
street: '',
zipcode: '',
city: '',
backgroundColor: '#ffffff'
backgroundColor: '#ffffff',
website: '',
},
editMode: false,
editId: null
@@ -87,7 +90,8 @@ export default {
street: '',
zipcode: '',
city: '',
backgroundColor: '#ffffff'
backgroundColor: '#ffffff',
website: '',
};
this.editMode = false;
this.editId = null;

View File

@@ -21,6 +21,9 @@
<label for="organizer">Gestalter:</label>
<input type="text" id="organizer" v-model="worshipData.organizer">
<label for="sacristanService">Küsterdienst:</label>
<input type="text" id="sacristanService" v-model="worshipData.sacristanService">
<label for="collection">Kollekte:</label>
<input type="text" id="collection" v-model="worshipData.collection">
@@ -77,7 +80,9 @@ export default {
selfInformation: false,
highlightTime: false,
neighborInvitation: false,
introLine: ''
introLine: '',
sacristanService: '',
website: '',
},
selectedEventPlace: null,
editMode: false,