pracownia-timefall/hr_module/templates/hr_module_creation_log.html
2021-01-09 18:31:20 +01:00

20 lines
669 B
HTML

{% extends 'hr_module_base.html' %}
{% load static %}
{% block action_panel %}
<link rel="stylesheet" href="{% static '/css/hr_module_schedule_creation_log.css' %}">
{% if creation_log.count > 0 %}
<div class="link_to_report_download">Links with scheduling import are below: </div>
{% for item in creation_log %}
<a href="{{ MEDIA_URL }}import_reports/{{ item.report_location }}">
<div class="link_to_report_download">{{ item.report_location }}</div>
</a>
{% endfor %}
{% else %}
<div class="link_to_report_download">You have not created schedule for anyone yet</div>
{% endif %}
{% endblock %}