mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-13 05:44:24 +00:00
minor changes
This commit is contained in:
parent
39a7cecd24
commit
72cffd7a3d
@ -10,6 +10,14 @@
|
|||||||
<i class="fa fa-home"></i>
|
<i class="fa fa-home"></i>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link"
|
||||||
|
:class="{'active': activeTab === 'MyNotifications'}"
|
||||||
|
@click="selectTab('MyNotifications')">
|
||||||
|
{{ $t('my_notifications.tab') }}
|
||||||
|
<tab-counter :count="state.notifications.count"></tab-counter>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
<li class="nav-item">
|
<li class="nav-item">
|
||||||
<a class="nav-link"
|
<a class="nav-link"
|
||||||
:class="{'active': activeTab === 'MyAccompanyingCourses'}"
|
:class="{'active': activeTab === 'MyAccompanyingCourses'}"
|
||||||
@ -43,14 +51,6 @@
|
|||||||
<tab-counter :count="state.tasks.alert.count"></tab-counter>
|
<tab-counter :count="state.tasks.alert.count"></tab-counter>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="nav-item">
|
|
||||||
<a class="nav-link"
|
|
||||||
:class="{'active': activeTab === 'MyNotifications'}"
|
|
||||||
@click="selectTab('MyNotifications')">
|
|
||||||
{{ $t('my_notifications.tab') }}
|
|
||||||
<tab-counter :count="state.notifications.count"></tab-counter>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
<li class="nav-item loading ms-auto py-2" v-if="loading">
|
<li class="nav-item loading ms-auto py-2" v-if="loading">
|
||||||
<i class="fa fa-circle-o-notch fa-spin fa-lg text-chill-gray" :title="$t('loading')"></i>
|
<i class="fa fa-circle-o-notch fa-spin fa-lg text-chill-gray" :title="$t('loading')"></i>
|
||||||
</li>
|
</li>
|
||||||
|
@ -1,8 +1,14 @@
|
|||||||
<template>
|
<template>
|
||||||
<div id="dashboards" class="row g-3">
|
<span v-if="noResults" class="chill-no-data-statement">{{ $t('no_dashboard') }}</span>
|
||||||
|
<div v-else id="dashboards" class="row g-3">
|
||||||
<div class="mbloc col col-sm-6 col-lg-4">
|
<div class="mbloc col col-sm-6 col-lg-4">
|
||||||
<div class="custom1">
|
<div class="custom1">
|
||||||
Mon bloc personnalisé
|
Mon bloc personnalisé
|
||||||
|
|
||||||
|
x notifications non lues
|
||||||
|
x tâches en rappel
|
||||||
|
x ...
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -10,7 +16,12 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
export default {
|
export default {
|
||||||
name: "MyCustoms"
|
name: "MyCustoms",
|
||||||
|
computed: {
|
||||||
|
noResults() {
|
||||||
|
return true
|
||||||
|
},
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
@ -3,7 +3,6 @@
|
|||||||
<span v-if="noResults" class="chill-no-data-statement">{{ $t('no_data') }}</span>
|
<span v-if="noResults" class="chill-no-data-statement">{{ $t('no_data') }}</span>
|
||||||
<tab-table v-else>
|
<tab-table v-else>
|
||||||
<template v-slot:thead>
|
<template v-slot:thead>
|
||||||
<th scope="col">#</th>
|
|
||||||
<th scope="col">{{ $t('Date') }}</th>
|
<th scope="col">{{ $t('Date') }}</th>
|
||||||
<th scope="col">{{ $t('From') }}</th>
|
<th scope="col">{{ $t('From') }}</th>
|
||||||
<th scope="col">{{ $t('Subject') }}</th>
|
<th scope="col">{{ $t('Subject') }}</th>
|
||||||
@ -11,7 +10,6 @@
|
|||||||
</template>
|
</template>
|
||||||
<template v-slot:tbody>
|
<template v-slot:tbody>
|
||||||
<tr v-for="(n, i) in notifications.results" :key="`notify-${i}`">
|
<tr v-for="(n, i) in notifications.results" :key="`notify-${i}`">
|
||||||
<th scope="row">{{ i+1 }}</th>
|
|
||||||
<td>{{ $d(n.date.datetime, 'long') }}</td>
|
<td>{{ $d(n.date.datetime, 'long') }}</td>
|
||||||
<td>{{ n.sender.text }}</td>
|
<td>{{ n.sender.text }}</td>
|
||||||
<td>
|
<td>
|
||||||
|
@ -4,14 +4,12 @@
|
|||||||
<span v-if="noResults" class="chill-no-data-statement">{{ $t('no_data') }}</span>
|
<span v-if="noResults" class="chill-no-data-statement">{{ $t('no_data') }}</span>
|
||||||
<tab-table v-else>
|
<tab-table v-else>
|
||||||
<template v-slot:thead>
|
<template v-slot:thead>
|
||||||
<th scope="col">#</th>
|
|
||||||
<th scope="col">{{ $t('StartDate') }}</th>
|
<th scope="col">{{ $t('StartDate') }}</th>
|
||||||
<th scope="col">{{ $t('SocialAction') }}</th>
|
<th scope="col">{{ $t('SocialAction') }}</th>
|
||||||
<th scope="col"></th>
|
<th scope="col"></th>
|
||||||
</template>
|
</template>
|
||||||
<template v-slot:tbody>
|
<template v-slot:tbody>
|
||||||
<tr v-for="(w, i) in works.results" :key="`works-${i}`">
|
<tr v-for="(w, i) in works.results" :key="`works-${i}`">
|
||||||
<th scope="row">{{ i+1 }}</th>
|
|
||||||
<td>{{ $d(w.startDate.datetime, 'short') }}</td>
|
<td>{{ $d(w.startDate.datetime, 'short') }}</td>
|
||||||
<td>
|
<td>
|
||||||
<h4 class="badge-title">
|
<h4 class="badge-title">
|
||||||
|
@ -32,7 +32,8 @@ const appMessages = {
|
|||||||
the_action: "l'action",
|
the_action: "l'action",
|
||||||
StartDate: "Date d'ouverture",
|
StartDate: "Date d'ouverture",
|
||||||
SocialAction: "Action d'accompagnement",
|
SocialAction: "Action d'accompagnement",
|
||||||
no_data: "Aucun résultats"
|
no_data: "Aucun résultats",
|
||||||
|
no_dashboard: "Pas de tableaux de bord"
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<div class="sticky-buttons">
|
<div class="sticky-buttons">
|
||||||
<a class="btn btn-lg btn-circle btn-success" title="Appel téléphonique"
|
<a class="btn btn-lg btn-circle btn-success" title="Appel téléphonique"
|
||||||
href="{{ path('chill_crud_aside_activity_new', {'type' : 7, 'duration' : '600', 'note' : 'Pas des remarques' }) }}">
|
href="{{ path('chill_crud_aside_activity_new', {'type' : 7, 'duration' : '600', 'note' : '' }) }}">
|
||||||
<i class="fa fa-phone fa-lg"></i>
|
<i class="fa fa-phone fa-lg"></i>
|
||||||
</a>
|
</a>
|
||||||
<a class="btn btn-lg btn-circle btn-success" title="Activité annexe"
|
<a class="btn btn-lg btn-circle btn-success" title="Activité annexe"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user