Skip to content
Snippets Groups Projects
Commit 801712bd authored by Nils Brinckmann's avatar Nils Brinckmann
Browse files

Add links to website & to write mails to contacts

parent 8b83f290
No related branches found
No related tags found
1 merge request!117Add links to website & to write mails to contacts
......@@ -44,6 +44,11 @@ permissions and limitations under the Licence.
<v-col cols="12" md="9">
<label>E-mail</label>
{{ value.email | orDefault }}
<a v-if="value.email.length > 0" :href="'mailto:' + value.email">
<v-icon>
mdi-email
</v-icon>
</a>
</v-col>
</v-row>
<v-row>
......
......@@ -79,6 +79,11 @@ permissions and limitations under the Licence.
<v-col cols="12" md="9">
<label>Website</label>
{{ value.website | orDefault }}
<a v-if="value.website.length > 0" :href="value.website" target="_blank">
<v-icon>
mdi-open-in-new
</v-icon>
</a>
</v-col>
</v-row>
<v-divider />
......
......@@ -83,6 +83,11 @@ permissions and limitations under the Licence.
<v-col cols="12" md="9">
<label>Website</label>
{{ value.website | orDefault }}
<a v-if="value.website.length > 0" :href="value.website" target="_blank">
<v-icon>
mdi-open-in-new
</v-icon>
</a>
</v-col>
</v-row>
<v-divider />
......
......@@ -145,6 +145,11 @@ permissions and limitations under the Licence.
>
<label>E-Mail:</label>
{{ contact.email | orDefault }}
<a v-if="contact.email.length > 0" :href="'mailto:' + contact.email">
<v-icon>
mdi-email
</v-icon>
</a>
</v-col>
<v-col
cols="12"
......@@ -152,6 +157,11 @@ permissions and limitations under the Licence.
>
<label>Website:</label>
{{ contact.website | orDefault }}
<a v-if="contact.website.length > 0" :href="contact.website" target="_blank">
<v-icon>
mdi-open-in-new
</v-icon>
</a>
</v-col>
</v-row>
</div>
......
......@@ -148,6 +148,11 @@ permissions and limitations under the Licence.
>
<label>E-Mail:</label>
{{ contact.email | orDefault }}
<a v-if="contact.email.length > 0" :href="'mailto:' + contact.email">
<v-icon>
mdi-email
</v-icon>
</a>
</v-col>
<v-col
cols="12"
......@@ -155,6 +160,11 @@ permissions and limitations under the Licence.
>
<label>Website:</label>
{{ contact.website | orDefault }}
<a v-if="contact.website.length > 0" :href="contact.website" target="_blank">
<v-icon>
mdi-open-in-new
</v-icon>
</a>
</v-col>
</v-row>
</div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment