mirror of
https://gitlab.dit.htwk-leipzig.de/htwk-software/htwkalender.git
synced 2025-07-16 17:48:49 +02:00
feat:#36 updated imprint and links
This commit is contained in:
@ -1,4 +1,5 @@
|
||||
<script lang="ts" setup></script>
|
||||
<script lang="ts" setup>
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="flex align-items-center justify-content-center flex-column">
|
||||
@ -220,7 +221,7 @@
|
||||
</div>
|
||||
<p>
|
||||
{{ $t("faqView.notFound") }}<br />
|
||||
<a href="/imprint">{{ $t("faqView.contact") }}</a>
|
||||
<a href="mailto:support@htwkalender.de">support@htwkalender.de</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -41,12 +41,12 @@ const items = computed(() => [
|
||||
{
|
||||
label: t("imprint"),
|
||||
icon: "pi pi-fw pi-id-card",
|
||||
route: "/imprint",
|
||||
url: "https://htwk-leipzig.de/hochschule/kontakt/impressum/",
|
||||
},
|
||||
{
|
||||
label: t("privacy"),
|
||||
icon: "pi pi-fw pi-exclamation-triangle",
|
||||
route: "/privacy-policy",
|
||||
url: "https://www.htwk-leipzig.de/hochschule/kontakt/datenschutzerklaerung/",
|
||||
},
|
||||
]);
|
||||
</script>
|
||||
@ -88,6 +88,7 @@ const items = computed(() => [
|
||||
: 'flex align-items-center'
|
||||
"
|
||||
v-bind="props.action"
|
||||
:href="item.url"
|
||||
>
|
||||
<span :class="item.icon" />
|
||||
<span class="ml-2 p-menuitem-label">{{ item.label }}</span>
|
||||
|
@ -231,9 +231,9 @@
|
||||
"sixthQuestion": "Aktualisierungs Probleme mit dem Kalender?",
|
||||
"sixthAnswer": " Das liegt vermutlich daran, dass du ihn heruntergeladen statt abonniert hast. Automatisch aktualisieren können sich nur Kalender, die du abonniert hast. Eine Aktualisierung des Kalenders auf dem Server wird alle 3h ab Mitternacht durchgeführt. So wird gewährleistet das alle Veränderungen seitens der HTWK übernommen werden.",
|
||||
"seventhQuestion": "Wie lange ist mein Stundenplan bzw. der Link dorthin gültig?",
|
||||
"seventhAnswer": "Studenpläne sind erstmal nur für die ausgewählten Semester gültig. Da durch Wahlpflichtmodule oder deine Planung sich Veränderungen ergeben können.",
|
||||
"seventhAnswer": "Studenpläne sind erstmal nur für die ausgewählten Semester gültig, da durch Wahlpflichtmodule oder deine Planung sich Veränderungen ergeben können. Der Link ist jedoch unbegrenzt gültig und du kannst zu jedem Zeitpunkt deinen Stundenplan aktualisieren.",
|
||||
"eighthQuestion": "Preis und Entwicklung?",
|
||||
"eighthAnswer": "Die Kosten können durch das selbständiges Hosting vollständig ausgelagert werden. Die Entwicklung soll als aktives Git Projekt auch durch die Community verwaltet werden.",
|
||||
"eighthAnswer": "Die Entwicklung soll als aktives Git Projekt auch durch die Community verwaltet werden. Eine freie Version des HTWKalenders wird intern auf den Servern des FSR IMN gehostet und ist für alle HTWK-Studenten kostenlos.",
|
||||
"ninthQuestion": "Wo kann ich den Quellcode einsehen und mitwirken?",
|
||||
"ninthAnswer": "Wenn du dich für die Entwicklung und den Quelltext interessierst, kannst du jederzeit als HTWK-Student daran mitarbeiten. Quelltext und weitere Informationen findest du im ",
|
||||
"notFound": "Nicht gefunden, wonach du suchst?",
|
||||
|
@ -231,9 +231,9 @@
|
||||
"sixthQuestion": "Updating issues with the calendar?",
|
||||
"sixthAnswer": "This is probably because you downloaded it instead of subscribing. Only calendars that you have subscribed to can update automatically. A server update of the calendar occurs every 3 hours starting from midnight. This ensures that all changes from HTWK are incorporated.",
|
||||
"seventhQuestion": "How long is my timetable or the link to it valid?",
|
||||
"seventhAnswer": "Timetables are initially only valid for the selected semesters, as changes can occur due to elective modules or your planning.",
|
||||
"seventhAnswer": "Timetables are initially only valid for the selected semesters, as elective modules or your planning may result in changes. However, the link is valid indefinitely and you can update your timetable at any time.",
|
||||
"eighthQuestion": "Cost and development?",
|
||||
"eighthAnswer": "Costs can be completely outsourced through self-hosting. Development is intended to be managed by the community as an active Git project.",
|
||||
"eighthAnswer": "The development should also be managed by the community as an active Git project. A free version of the HTW calendar is hosted internally on the servers of the FSR IMN and is free of charge for all HTWK students.",
|
||||
"ninthQuestion": "Where could i find the source code?",
|
||||
"ninthAnswer": "If you want to contribute, you can do so at any time if you are a HTWK student. The source code is available on ",
|
||||
"notFound": "Not finding what you're looking for?",
|
||||
|
@ -3,8 +3,6 @@ import { createRouter, createWebHistory } from "vue-router";
|
||||
const Faq = () => import("../components/FaqPage.vue");
|
||||
const AdditionalModules = () => import("../view/AdditionalModules.vue");
|
||||
const CalendarLink = () => import("../components/CalendarLink.vue");
|
||||
const Imprint = () => import("../view/ImprintPage.vue");
|
||||
const PrivacyPolicy = () => import("../view/PrivacyPolicy.vue");
|
||||
const RenameModules = () => import("../components/RenameModules.vue");
|
||||
const RoomFinder = () => import("../view/RoomFinder.vue");
|
||||
const EditCalendarView = () => import("../view/EditCalendarView.vue");
|
||||
@ -67,12 +65,18 @@ const router = createRouter({
|
||||
{
|
||||
path: "/privacy-policy",
|
||||
name: "privacy-policy",
|
||||
component: PrivacyPolicy,
|
||||
component: Faq,
|
||||
beforeEnter() {
|
||||
window.location.href = "https://www.htwk-leipzig.de/hochschule/kontakt/datenschutzerklaerung/";
|
||||
}
|
||||
},
|
||||
{
|
||||
path: "/imprint",
|
||||
name: "imprint",
|
||||
component: Imprint,
|
||||
component: Faq,
|
||||
beforeEnter() {
|
||||
window.location.href = "https://www.htwk-leipzig.de/hochschule/kontakt/impressum/";
|
||||
},
|
||||
},
|
||||
{
|
||||
path: "/rename-modules",
|
||||
|
@ -8,11 +8,6 @@
|
||||
<div class="flex flex-column md:col-7">
|
||||
<p>nach dem Telemediengesetz (TMG) der Bundesrepublik Deutschland.</p>
|
||||
|
||||
<h2>Kontakt</h2>
|
||||
<p>
|
||||
Per Email:
|
||||
<a href="mailto:support@htwkalender.de">support@htwkalender.de</a>
|
||||
</p>
|
||||
|
||||
<h2>Adresse</h2>
|
||||
<p>
|
||||
@ -20,9 +15,9 @@
|
||||
RStV:
|
||||
</p>
|
||||
<p>
|
||||
Elmar Kresse<br />
|
||||
Philipp-Rosenthal-Straße 33<br />
|
||||
04103 Leipzig
|
||||
FSR IMN HTWK<br />
|
||||
Karl-Liebknecht-Str. 132<br />
|
||||
04277 Leipzig
|
||||
</p>
|
||||
|
||||
<h2>Haftungsausschluss</h2>
|
||||
|
Reference in New Issue
Block a user