Files
ihrm/employee/templates/policies/view_policies.html

18 lines
567 B
HTML

{% extends 'index.html' %}
{% block content %}
{% load i18n %}
{% load static %}
{% include 'policies/nav.html' %}
<div class="oh-wrapper" id="policyContainer">
{% if policies %}
{% include 'policies/records.html' %}
{% else %}
<div class="oh-empty">
<img src="{% static 'images/ui/search.svg' %}" class="oh-404__image" alt="Page not found. 404." />
<h1 class="oh-empty__title">{% trans "No Records found." %}</h1>
<p class="oh-empty__subtitle">{% trans "There are currently no policies to consider." %}</p>
</div>
{% endif %}
</div>
{% endblock %}