{% extends "updating_service/base.html" %} {% load staticfiles %} {% load get_at_index %} {% block content %}

Updating Service

{% if cves %} Number of CVEs connected to your version: {{ cves|length }}

{% else %} {% endif %}

Current version: {{ current_django_version }}

The application is running version {{ current_django_version }} of Django


{% if current_base_version_info.lts %}

Supported:

Congrats! Your installation of Django is still supported by the Djangoproject!

{% else %}

Supported:

Your version of Django is not supported anymore and will not recieve any security updates in the future!

{% endif %}
{% if recommended_version != current_django_version %}

Secure version: {{ recommended_version }}

Your application is outdated and unsecure! It is recommended that you update to version {{ recommended_version }}


Update:

{% csrf_token %}
{% endif %}
{% if cves %}

Current vulnerabilities in your version


{% for cve in cves %} {% if forloop.first %} {{ cve.cve_id }} {% else %} {{ cve.cve_id }} {% endif %} {% endfor %}
{% endif %} {% if current_base_version_info.base_version < recommended_base_version %}

Changelog elements to look closer at


{% for element in ids_to_look_closer_at_changelog %} {% if forloop.first %} {{ element|slice:'1:' }} {% else %} {{ element|slice:'1:' }} {% endif %} {% endfor %}
{% endif %}

Model graph overview of the application


Model Graph
{% endblock %}