This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2021-08-30 02:36:57 -07:00
|
|
|
<template>
|
2021-09-14 03:23:08 -07:00
|
|
|
<Submenu v-if="config.community" :links="[
|
2021-08-30 02:36:57 -07:00
|
|
|
{name: 'terminology.header', icon: 'flag', route: config.terminology.route, condition: config.terminology.enabled},
|
2021-09-06 10:40:27 -07:00
|
|
|
{name: 'inclusive.header', icon: 'book-heart', route: config.inclusive.route, condition: config.inclusive.enabled},
|
|
|
|
{name: 'calendar.header', route: config.calendar.route, icon: 'calendar-star', condition: config.calendar && config.calendar.enabled},
|
|
|
|
{name: 'census.header', route: config.census.route, icon: 'user-chart', condition: config.census.enabled},
|
|
|
|
{name: 'people.header', route: config.people.route, icon: 'user-friends', condition: config.people.enabled},
|
2021-08-30 02:36:57 -07:00
|
|
|
]"/>
|
|
|
|
</template>
|