forked from kompetenzinventar/ki-frontend
Compare commits
4 Commits
v1.0.0
...
feature/#2
Author | SHA1 | Date | |
---|---|---|---|
350e09cf24 | |||
04cb8a7217 | |||
e3115f9944 | |||
122b13b6a2 |
@ -6,6 +6,20 @@ SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
|
||||
<template>
|
||||
<ul class="list-group list-group-flush">
|
||||
<li
|
||||
v-if="type == 'contacttype'"
|
||||
class="list-group-item">
|
||||
<div class="row">
|
||||
<div class="col-6">
|
||||
Kontaktart
|
||||
<i class="bi bi-info-circle" v-tooltip="contactTypeTooltip"></i>
|
||||
</div>
|
||||
<div class="col-6">
|
||||
Wert
|
||||
<i class="bi bi-info-circle" v-tooltip="contactContentTooltip"></i>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
<li
|
||||
class="list-group-item"
|
||||
v-for="(value, valueKey) in values"
|
||||
@ -102,6 +116,14 @@ export default {
|
||||
levelSelection: levelJson,
|
||||
languagesSelection: languagesJson,
|
||||
editableValues: this.values,
|
||||
contactTypeTooltip: {
|
||||
content: 'Kontaktart z.B. E-Mail, Matrix, Twitter etc...',
|
||||
html: true
|
||||
},
|
||||
contactContentTooltip: {
|
||||
content: 'Wert: zB.: beate@beispiel.de, @beate:beispiel.de, beate_beispiel',
|
||||
html: true
|
||||
}
|
||||
};
|
||||
},
|
||||
watch: {
|
||||
|
@ -115,11 +115,11 @@ SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
</template>
|
||||
</Section>
|
||||
|
||||
<Section title="Ich suche">
|
||||
<Section title="Ich suche für mich Projekte/Aufträge in folgenden Bereichen">
|
||||
<template v-slot:card-body>
|
||||
<auto-complete
|
||||
type="skill"
|
||||
label="Ich suche"
|
||||
label="Ich suche für mich Projekte/Aufträge in folgenden Bereichen"
|
||||
:values="profile.searchtopics"
|
||||
:showSecondary="false"
|
||||
placeholder="z.B. Python, JavaScript, Linux"
|
||||
@ -167,7 +167,7 @@ SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
<auto-complete
|
||||
type="contacttype"
|
||||
:values="profile.contacts"
|
||||
placeholder="z.B. E-Mail, Mobiltelefon, Matrix, Web"
|
||||
placeholder="Zuerst Kontaktart: E-Mail, Matrix, Web, etc.."
|
||||
@update-values="profile.contacts = $event"
|
||||
></auto-complete>
|
||||
</template>
|
||||
|
@ -31,7 +31,7 @@ SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
|
||||
<Section
|
||||
v-if="profile.searchtopics && profile.searchtopics.length > 0"
|
||||
title="Das suche ich">
|
||||
title="Ich suche für mich Projekte/Aufträge in folgenden Bereichen">
|
||||
<div style="margin-bottom: -.5rem;">
|
||||
<Skill
|
||||
class="me-2 mb-2"
|
||||
|
Reference in New Issue
Block a user