{% extends 'base.html' %} {% load static %} {% block title %}Documents - HR - Optinet Global Links{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

Documents

Manage employee documents and files

{% include 'hr/hr_nav.html' %}
Employee Documents
Upload Document
{% if documents %}
{% for document in documents %} {% endfor %}
Employee Type Title Upload Date Uploaded By Actions
{{ document.employee.full_name }} {{ document.get_document_type_display }} {{ document.title }} {{ document.uploaded_at|date:"M d, Y H:i" }} {{ document.uploaded_by.get_full_name }}
{% else %}
No documents found

Upload employee documents to get started.

Upload Document
{% endif %}
{% endblock content %} {% block extra_js %} {% endblock %}