{% extends "base.html" %} {% load bootstrap4 %} {% load widget_tweaks %} {% block title %}Client - Claims and Corrections{% endblock title %} {% block content %}

{% include "client_navbar.html" %}

Claims and Corrections - {{active_company.company_name}}


{% for claim in claims%}
{{claim.author}}
{{claim.created_at}}
{%if claim.closed%}

closed

{%else%}

open

{%endif%}
{%endfor%}

{% for claim in claims_closed %}
{{claim.author}}
{{claim.created_at}}
{%if claim.closed%}

closed

{%else%}

open

{%endif%}
{%endfor%}

Create New


{%if claim_form %}
{% csrf_token %} {% bootstrap_form claim_form %} {% buttons %}
{% endbuttons %}
{%else%}

Currently no document is eligible for a claim.

{%endif%}
Info

Shown are only documents that are less than five days (120h) old. After that time span no further claims can be risen.

{% endblock content %}