mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
Community Information page style
This commit is contained in:
parent
a2ce36ecce
commit
a214059b90
@ -1,8 +1,8 @@
|
||||
<template>
|
||||
<div id="app" class="h-100">
|
||||
<div id="app">
|
||||
<div :class="$route.meta.requiresAuth ? 'appContent' : ''">
|
||||
<component :is="$route.meta.requiresAuth ? 'DashboardLayout' : 'AuthLayout'" />
|
||||
<div class="goldrand position-fixed w-100 fixed-bottom zindex1000"></div>
|
||||
<div class="goldrand position-fixed fixed-bottom zindex1000"></div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
@ -16,11 +16,13 @@
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
import CONFIG from '@/config'
|
||||
|
||||
export default {
|
||||
name: 'Breadcrumb',
|
||||
computed: {
|
||||
pageTitle() {
|
||||
const options = { name: this.$store.state.firstName }
|
||||
const options = { name: this.$store.state.firstName, community: CONFIG.COMMUNITY_NAME }
|
||||
// eslint-disable-next-line @intlify/vue-i18n/no-dynamic-keys
|
||||
return this.$t(`pageTitle.${this.$route.meta.pageTitle}`, options)
|
||||
},
|
||||
|
||||
@ -17,7 +17,7 @@
|
||||
@submit.prevent="submit"
|
||||
class="border p-3 bg-white appBoxShadow gradido-border-radius"
|
||||
>
|
||||
<label>{{ $t('contribution.selectDate') }} {{ $t('math.asterisk') }}</label>
|
||||
<label>{{ $t('contribution.selectDate') }}</label>
|
||||
<b-form-datepicker
|
||||
id="contribution-date"
|
||||
v-model="form.date"
|
||||
@ -43,9 +43,9 @@
|
||||
:rules="{ required: true, min: 5, max: 255 }"
|
||||
/>
|
||||
<input-time
|
||||
v-model="form.time"
|
||||
:name="$t('form.time')"
|
||||
:label="$t('form.time')"
|
||||
v-model="form.hours"
|
||||
:name="$t('form.hours')"
|
||||
:label="$t('form.hours')"
|
||||
placeholder="0.5"
|
||||
:rules="{
|
||||
required: true,
|
||||
@ -122,7 +122,6 @@
|
||||
</b-col>
|
||||
</b-row>
|
||||
</b-form>
|
||||
<p class="p-2">{{ $t('math.asterisk') }} {{ $t('form.mandatoryField') }}</p>
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
|
||||
@ -15,6 +15,8 @@
|
||||
:placeholder="placeholder"
|
||||
:state="validated ? valid : false"
|
||||
trim
|
||||
rows="4"
|
||||
max-rows="4"
|
||||
></b-form-textarea>
|
||||
<b-form-invalid-feedback v-bind="ariaMsg">
|
||||
{{ errors[0] }}
|
||||
|
||||
@ -1,10 +1,11 @@
|
||||
<template>
|
||||
<div class="userdata-card">
|
||||
<b-card class="border-0">
|
||||
<div class="justify-content-center">
|
||||
<b-row>
|
||||
<b-col class="centerPerMargin">
|
||||
<avatar :username="username" :color="'#fff'" :size="90"></avatar>
|
||||
</div>
|
||||
|
||||
</b-col>
|
||||
</b-row>
|
||||
<b-card class="border-0">
|
||||
<b-container class="justify-content-center mt-md-5">
|
||||
<b-row>
|
||||
<b-col>
|
||||
@ -57,3 +58,8 @@ export default {
|
||||
},
|
||||
}
|
||||
</script>
|
||||
<style scoped>
|
||||
.centerPerMargin {
|
||||
padding-left: 38%;
|
||||
}
|
||||
</style>
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<div class="main-page h-100">
|
||||
<div class="main-page">
|
||||
<div v-if="skeleton">
|
||||
<skeleton-overview />
|
||||
</div>
|
||||
@ -23,7 +23,7 @@
|
||||
|
||||
<!-- Breadcrumb -->
|
||||
<b-row>
|
||||
<b-col cols="12" offset-lg="2">
|
||||
<b-col cols="10" offset-lg="2">
|
||||
<breadcrumb />
|
||||
</b-col>
|
||||
</b-row>
|
||||
|
||||
@ -124,7 +124,6 @@
|
||||
"from": "Von",
|
||||
"generate_now": "Jetzt generieren",
|
||||
"lastname": "Nachname",
|
||||
"mandatoryField": "Pflichtfeld",
|
||||
"memo": "Nachricht",
|
||||
"message": "Nachricht",
|
||||
"new_balance": "Neuer Kontostand nach Bestätigung",
|
||||
@ -146,7 +145,7 @@
|
||||
"send_transaction_success": "Deine Transaktion wurde erfolgreich ausgeführt",
|
||||
"sorry": "Entschuldigung",
|
||||
"thx": "Danke",
|
||||
"time": "Zeit",
|
||||
"hours": "Stunden",
|
||||
"to": "bis",
|
||||
"to1": "an",
|
||||
"validation": {
|
||||
@ -331,13 +330,14 @@
|
||||
},
|
||||
"via_link": "über einen Link",
|
||||
"welcome": "Willkommen in der Gemeinschaft",
|
||||
"communityInfo":"Gemeinschaft Information",
|
||||
"pageTitle": {
|
||||
"overview":"Willkommen {name}",
|
||||
"send":"Sende Gradidos",
|
||||
"transactions":"Deine Transaktionen",
|
||||
"gdt":"Deine GDT Transaktionen",
|
||||
"community":"Meine Gemeinschaft",
|
||||
"information":"Gemeinschaft Info",
|
||||
"information":"{community}",
|
||||
"settings":"Einstellungen"
|
||||
}
|
||||
}
|
||||
|
||||
@ -124,7 +124,6 @@
|
||||
"from": "from",
|
||||
"generate_now": "Generate now",
|
||||
"lastname": "Lastname",
|
||||
"mandatoryField": "mandatory field",
|
||||
"memo": "Message",
|
||||
"message": "Message",
|
||||
"new_balance": "Account balance after confirmation",
|
||||
@ -146,7 +145,7 @@
|
||||
"send_transaction_success": "Your transaction was successfully completed",
|
||||
"sorry": "Sorry",
|
||||
"thx": "Thank you",
|
||||
"time": "Time",
|
||||
"hours": "Horas",
|
||||
"to": "to",
|
||||
"to1": "to",
|
||||
"validation": {
|
||||
@ -331,13 +330,14 @@
|
||||
},
|
||||
"via_link": "via Link",
|
||||
"welcome": "Welcome to the community",
|
||||
"communityInfo":"Community Information",
|
||||
"pageTitle": {
|
||||
"overview": "Welcome {name}",
|
||||
"send": "Send Gradidos",
|
||||
"transactions": "Your transactions",
|
||||
"gdt": "Your GDT transactions",
|
||||
"community": "My community",
|
||||
"information": "Community Info",
|
||||
"information":"{community}",
|
||||
"settings": "Settings"
|
||||
}
|
||||
}
|
||||
|
||||
@ -122,7 +122,6 @@
|
||||
"from": "De",
|
||||
"generate_now": "crear ahora",
|
||||
"lastname": "Apellido",
|
||||
"mandatoryField": "campo obligatorio",
|
||||
"memo": "Mensaje",
|
||||
"message": "Noticia",
|
||||
"new_balance": "Saldo de cuenta nuevo depués de confirmación",
|
||||
|
||||
@ -122,7 +122,6 @@
|
||||
"from": "de",
|
||||
"generate_now": "Produire maintenant",
|
||||
"lastname": "Nom",
|
||||
"mandatoryField": "champ obligatoire",
|
||||
"memo": "Note",
|
||||
"message": "Message",
|
||||
"new_balance": "Montant du solde après confirmation",
|
||||
@ -144,7 +143,7 @@
|
||||
"send_transaction_success": "Votre transaction a été effectuée avec succès",
|
||||
"sorry": "Désolé",
|
||||
"thx": "Merci",
|
||||
"time": "Heure",
|
||||
"hours": "Uren",
|
||||
"to": "à",
|
||||
"to1": "à",
|
||||
"validation": {
|
||||
|
||||
@ -122,7 +122,6 @@
|
||||
"from": "Van",
|
||||
"generate_now": "Nu genereren",
|
||||
"lastname": "Achternaam",
|
||||
"mandatoryField": "verplicht veld",
|
||||
"memo": "Memo",
|
||||
"message": "Bericht",
|
||||
"new_balance": "Nieuw banksaldo na bevestiging",
|
||||
|
||||
@ -115,7 +115,6 @@
|
||||
"from": "Gönderen",
|
||||
"generate_now": "Şimdi oluştur",
|
||||
"lastname": "Soyadı",
|
||||
"mandatoryField": "Sorunlu alan",
|
||||
"memo": "Mesaj",
|
||||
"message": "Mesaj",
|
||||
"new_balance": "Onay sonrası hesap bakiyesi",
|
||||
@ -136,7 +135,7 @@
|
||||
"send_transaction_success": "İşleminiz başarıyla tamamlandı",
|
||||
"sorry": "Üzgünüz",
|
||||
"thx": "Teşekkür ederiz",
|
||||
"time": "Zaman",
|
||||
"hours": "Saat",
|
||||
"to": "Geçerlik",
|
||||
"to1": "Alıcı",
|
||||
"validation": {
|
||||
|
||||
@ -1,13 +1,14 @@
|
||||
<template>
|
||||
<div class="info-statistic">
|
||||
<b-container class="bg-white appBoxShadow gradido-border-radius p-4 mt--3">
|
||||
<div class="h3">{{ $t('community.community') }}</div>
|
||||
<div class="h1">{{ CONFIG.COMMUNITY_NAME }}</div>
|
||||
<div>
|
||||
<div>{{ $t('communityInfo') }}</div>
|
||||
<div class="h3">
|
||||
{{ CONFIG.COMMUNITY_DESCRIPTION }}
|
||||
</div>
|
||||
<div>
|
||||
{{ CONFIG.COMMUNITY_URL }}
|
||||
<router-link :to="CONFIG.COMMUNITY_URL">
|
||||
{{ CONFIG.COMMUNITY_URL }}
|
||||
</router-link>
|
||||
</div>
|
||||
<hr />
|
||||
<div class="h3">{{ $t('community.openContributionLinks') }}</div>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user