{% import 'components/avatar.html' as avatar %} {% import 'components/category-overview-card.html' as category_overview_card %} {% import 'components/shifts-table.html' as shifts_table %}
Overview
{{ category_overview_card.component( title='Employees', count=65, list=[{ title: 'In-time', count: 60, percent: 91, class: 'bg-primary' }, { title: 'Late', count: 15, percent: 22, class: 'bg-accent' }, { title: 'Absents', count: 4, percent: 5, class: 'bg-warning' }, { title: 'Out on Vacation', count: 1, percent: 1.06, class: 'bg-warning' }], cta_label='View employees' ) }}
{{ category_overview_card.component( title='Departments', count=12, list=[{ title: 'Human Resources', count: 2, percent: 7, class: 'bg-primary' }, { title: 'Entrepreneurship', count: 8, percent: 29, class: 'bg-primary' }, { title: 'Operations', count: 7, percent: 25, class: 'bg-primary' }, { title: 'Engineering', count: 10, percent: 37, class: 'bg-primary' }], cta_label='View departments' ) }}
Birthdays
Today
more_horiz
card_giftcard
Take a minute and congratulate them on their special day!
{% set items = [ { name: 'Gilbert Barrett', email: 'paolo.zieme@gmail.com', avatar: 'assets/images/256_rsz_1andy-lee-642320-unsplash.jpg' }, { name: 'Noah Allen', email: 'shanny.sawayn@yahoo.com', avatar: 'assets/images/256_michael-dam-258165-unsplash.jpg' } ] %}
{% for item in items %}
{{ avatar.component(image=item.avatar, size='32pt', class='mr-8pt') }}

{{ item.name }}

{{ item.email }}
email
{% endfor %}
Attendance

25%

In-time
Attendance doughnut chart goes here.
Self service
Attendance
more_horiz
access_time

08:58:05

am
Checkin

Time

08:30 am
Checkout

Duration

00:28:05
Shift distribution
{{ shifts_table.component(items=[{ avatar: { title: 'BN' }, name: 'Billy Nunez', monday: { title: 'Night', time: '20:00 - 08:00' }, tuesday: { title: 'Night', time: '20:00 - 08:00' }, friday: { title: 'Day', time: '07:30 - 20:00' }, saturday: { title: 'Day', time: '07:30 - 20:00' }, sunday: { title: 'Day', time: '07:30 - 20:00' } }, { avatar: { title: 'TP' }, name: 'Tony Parks', wednesday: { title: 'Night', time: '20:00 - 08:00' }, thursday: { title: 'Night', time: '20:00 - 08:00' } }, { selected: true, avatar: { image: 'assets/images/people/110/guy-1.jpg' }, name: 'Gilbert Barrett', monday: { title: 'Day', time: '07:30 - 20:00' }, tuesday: { title: 'Day', time: '07:30 - 20:00' }, friday: { title: 'Night', time: '20:00 - 08:00' }, saturday: { title: 'Night', time: '20:00 - 08:00' }, sunday: { title: 'Night', time: '20:00 - 08:00' } }, { avatar: { image: 'assets/images/people/110/guy-2.jpg' }, name: 'Ollie Wallace', wednesday: { title: 'Day', time: '07:30 - 20:00' }, thursday: { title: 'Day', time: '07:30 - 20:00' } }]) }}