{% extends 'generic/object.html' %}
{% load helpers %}
{% load i18n %}
{% block breadcrumbs %}
{{ block.super }}
Assignments
{% endblock breadcrumbs %}
{% block content %}
| Status |
{% badge object.certificate.get_status_display bg_color=object.certificate.get_status_color %} |
| Valid To |
{{ object.certificate.valid_to|date:"Y-m-d H:i" }} |
| Days Remaining |
{% if object.certificate.days_remaining < 0 %}
Expired
{% elif object.certificate.days_remaining <= 14 %}
{{ object.certificate.days_remaining }} days
{% elif object.certificate.days_remaining <= 30 %}
{{ object.certificate.days_remaining }} days
{% else %}
{{ object.certificate.days_remaining }} days
{% endif %}
|
{% if object.notes %}
{% endif %}
{% endblock content %}