{% if view_type == "card" %}
{% include 'time_sheet/time_sheet_card_view.html' %}
{% else %}
{% include 'time_sheet/time_sheet_list_view.html' %}
{% endif %}
{% extends 'index.html' %}
{% block content %}
{% load i18n %}
{% load basefilters %}
{% if view_type == "card" %}
{% include 'time_sheet/time_sheet_card_view.html' %}
{% else %}
{% include 'time_sheet/time_sheet_list_view.html' %}
{% endif %}