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>
|
<template>
|
||||||
<ul class="list-group list-group-flush">
|
<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
|
<li
|
||||||
class="list-group-item"
|
class="list-group-item"
|
||||||
v-for="(value, valueKey) in values"
|
v-for="(value, valueKey) in values"
|
||||||
@ -102,6 +116,14 @@ export default {
|
|||||||
levelSelection: levelJson,
|
levelSelection: levelJson,
|
||||||
languagesSelection: languagesJson,
|
languagesSelection: languagesJson,
|
||||||
editableValues: this.values,
|
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: {
|
watch: {
|
||||||
|
@ -115,11 +115,11 @@ SPDX-License-Identifier: AGPL-3.0-or-later
|
|||||||
</template>
|
</template>
|
||||||
</Section>
|
</Section>
|
||||||
|
|
||||||
<Section title="Ich suche">
|
<Section title="Ich suche für mich Projekte/Aufträge in folgenden Bereichen">
|
||||||
<template v-slot:card-body>
|
<template v-slot:card-body>
|
||||||
<auto-complete
|
<auto-complete
|
||||||
type="skill"
|
type="skill"
|
||||||
label="Ich suche"
|
label="Ich suche für mich Projekte/Aufträge in folgenden Bereichen"
|
||||||
:values="profile.searchtopics"
|
:values="profile.searchtopics"
|
||||||
:showSecondary="false"
|
:showSecondary="false"
|
||||||
placeholder="z.B. Python, JavaScript, Linux"
|
placeholder="z.B. Python, JavaScript, Linux"
|
||||||
@ -167,7 +167,7 @@ SPDX-License-Identifier: AGPL-3.0-or-later
|
|||||||
<auto-complete
|
<auto-complete
|
||||||
type="contacttype"
|
type="contacttype"
|
||||||
:values="profile.contacts"
|
:values="profile.contacts"
|
||||||
placeholder="z.B. E-Mail, Mobiltelefon, Matrix, Web"
|
placeholder="Zuerst Kontaktart: E-Mail, Matrix, Web, etc.."
|
||||||
@update-values="profile.contacts = $event"
|
@update-values="profile.contacts = $event"
|
||||||
></auto-complete>
|
></auto-complete>
|
||||||
</template>
|
</template>
|
||||||
|
@ -31,7 +31,7 @@ SPDX-License-Identifier: AGPL-3.0-or-later
|
|||||||
|
|
||||||
<Section
|
<Section
|
||||||
v-if="profile.searchtopics && profile.searchtopics.length > 0"
|
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;">
|
<div style="margin-bottom: -.5rem;">
|
||||||
<Skill
|
<Skill
|
||||||
class="me-2 mb-2"
|
class="me-2 mb-2"
|
||||||
|
Reference in New Issue
Block a user