{% extends 'base.html' %} {% load static %} {% block title %}Dashboard{% endblock %} {% block content %}

Welcome, {{ user.get_full_name }}

{{ user.employee.get_role_display }}

{% if user.employee.role == 'REG' %} {% endif %} {% if user.employee.role == 'HR' %} {% endif %} {% if user.employee.role == 'FIN' %} {% endif %}
Recent Activity
{% if recent_activities %} {% for activity in recent_activities %} {% endfor %} {% else %} {% endif %}
Type Employee Date Details Status
{% if activity.type == 'overtime' %} {% else %} {% endif %} {{ activity.type|title }} {{ activity.employee.user.get_full_name }} {{ activity.date|date:"M d, Y" }} {{ activity.details }} {% include "components/status_badge.html" with status=activity.status %}

No recent activity

{% endblock %}