Merge branch 'features/list-possible-user-referral-period' into 'master'

Features/list possible user referral period

See merge request Chill-Projet/chill-bundles!180
This commit is contained in:
2021-10-22 15:54:06 +00:00
19 changed files with 379 additions and 62 deletions

View File

@@ -0,0 +1,14 @@
<template>
<span class="chill-entity entity-user">
{{ user.label }}
<span class="user-job" v-if="user.user_job !== null">({{ user.user_job.label.fr }})</span>
<span class="main-scope" v-if="user.main_scope !== null">({{ user.main_scope.name.fr }})</span>
</span>
</template>
<script>
export default {
name: "UserRenderBoxBadge",
props: ['user'],
}
</script>