mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-20 00:12:15 +00:00
fixes phrasen in the studentProfil
This commit is contained in:
@@ -1,19 +1,17 @@
|
||||
export default {
|
||||
data(){
|
||||
return {
|
||||
|
||||
}
|
||||
data() {
|
||||
return {};
|
||||
},
|
||||
props: {
|
||||
title: {
|
||||
type: String,
|
||||
required: true,
|
||||
},
|
||||
props:{
|
||||
title:{
|
||||
type:String,
|
||||
|
||||
},
|
||||
data:{
|
||||
type:Array,
|
||||
}
|
||||
data: {
|
||||
type: Array,
|
||||
},
|
||||
template: `
|
||||
},
|
||||
template: /*html*/ `
|
||||
<div class="card ">
|
||||
<div class="card-header">
|
||||
{{title}}
|
||||
@@ -60,5 +58,5 @@ export default {
|
||||
|
||||
|
||||
</div>
|
||||
</div>`
|
||||
}
|
||||
</div>`,
|
||||
};
|
||||
|
||||
@@ -1,34 +1,32 @@
|
||||
export default{
|
||||
//TODO: To be implemented
|
||||
props:{
|
||||
data:{
|
||||
type:String,
|
||||
|
||||
},
|
||||
title:{
|
||||
type:String,
|
||||
|
||||
},
|
||||
mobile:{
|
||||
type:Boolean,
|
||||
default:false,
|
||||
}
|
||||
export default {
|
||||
//TODO: To be implemented
|
||||
props: {
|
||||
data: {
|
||||
type: String,
|
||||
},
|
||||
methods:{
|
||||
hideCollapse: function(){
|
||||
this.collapseOpen = false;
|
||||
},
|
||||
showCollapse: function(){
|
||||
this.collapseOpen = true;
|
||||
},
|
||||
title: {
|
||||
type: String,
|
||||
required: true,
|
||||
},
|
||||
data(){
|
||||
return{
|
||||
collapseOpen: false,
|
||||
|
||||
}
|
||||
mobile: {
|
||||
type: Boolean,
|
||||
default: false,
|
||||
},
|
||||
template:/*html*/`
|
||||
},
|
||||
methods: {
|
||||
hideCollapse: function () {
|
||||
this.collapseOpen = false;
|
||||
},
|
||||
showCollapse: function () {
|
||||
this.collapseOpen = true;
|
||||
},
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
collapseOpen: false,
|
||||
};
|
||||
},
|
||||
template: /*html*/ `
|
||||
<div class="card">
|
||||
<template v-if="mobile">
|
||||
|
||||
@@ -65,4 +63,4 @@ export default{
|
||||
|
||||
</template>
|
||||
</div>`,
|
||||
}
|
||||
};
|
||||
|
||||
@@ -199,7 +199,7 @@ export default {
|
||||
<div class="row py-2">
|
||||
<div class="col">
|
||||
|
||||
<quick-links :mobile="true"></quick-links>
|
||||
<quick-links :title="$p.t('profil','quickLinks')" :mobile="true"></quick-links>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -247,7 +247,7 @@ export default {
|
||||
<div class="col">
|
||||
|
||||
<!-- PROFIL INFORMATION -->
|
||||
<profil-information @showEditProfilModal="showEditProfilModal" title="$p.t('profil','studentIn')" :data="profilInformation"></profil-information>
|
||||
<profil-information @showEditProfilModal="showEditProfilModal" :title="$p.t('profil','studentIn')" :data="profilInformation"></profil-information>
|
||||
|
||||
|
||||
</div>
|
||||
@@ -257,8 +257,8 @@ export default {
|
||||
|
||||
<div class=" col-lg-12">
|
||||
|
||||
<!-- MITARBEITER INFO -->
|
||||
<role-information title="$p.t('profil','studentInformation')" :data="roleInformation"></role-information>
|
||||
<!-- STUDENT INFO -->
|
||||
<role-information :title="$p.t('profil','studentInformation')" :data="roleInformation"></role-information>
|
||||
|
||||
|
||||
</div>
|
||||
@@ -274,7 +274,7 @@ export default {
|
||||
<div class="row mb-4">
|
||||
<div class="col">
|
||||
<!-- EMAILS -->
|
||||
<profil-emails :data="data.emails" ></profil-emails>
|
||||
<profil-emails :title="this.$p.t('person','email')" :data="data.emails" ></profil-emails>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -350,11 +350,11 @@ export default {
|
||||
<div class="row">
|
||||
|
||||
<div class="col-12 mb-4" >
|
||||
<core-filter-cmpt title="$p.t('profil','entlehnteBetriebsmittel')" ref="betriebsmittelTable" :tabulator-options="betriebsmittel_table_options" tableOnly :sideMenu="false" />
|
||||
<core-filter-cmpt :title="$p.t('profil','entlehnteBetriebsmittel')" ref="betriebsmittelTable" :tabulator-options="betriebsmittel_table_options" tableOnly :sideMenu="false" />
|
||||
</div>
|
||||
|
||||
<div class="col-12 mb-4" >
|
||||
<core-filter-cmpt title="$p.t('profil','zutrittsGruppen')" ref="zutrittsgruppenTable" :tabulator-options="zutrittsgruppen_table_options" tableOnly :sideMenu="false" noColumnFilter />
|
||||
<core-filter-cmpt :title="$p.t('profil','zutrittsGruppen')" ref="zutrittsgruppenTable" :tabulator-options="zutrittsgruppen_table_options" tableOnly :sideMenu="false" noColumnFilter />
|
||||
|
||||
</div>
|
||||
|
||||
@@ -371,7 +371,7 @@ export default {
|
||||
<div class="col">
|
||||
|
||||
<!-- QUICK LINKS -->
|
||||
<quick-links ></quick-links>
|
||||
<quick-links :title="$p.t('profil','quickLinks')"></quick-links>
|
||||
|
||||
|
||||
</div>
|
||||
@@ -424,7 +424,7 @@ export default {
|
||||
|
||||
|
||||
<!-- HIER SIND DIE MAILVERTEILER -->
|
||||
<mailverteiler :data="data?.mailverteiler"></mailverteiler>
|
||||
<mailverteiler :title="$p.t('profil','mailverteiler')" :data="data?.mailverteiler"></mailverteiler>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user