{% extends "admin/base_site.html" %} {% block content_title %}

{{ title }}

Info: This page compares all currently installed pip packages against the requirements.txt file. ✅ means the package is present in both. – means it is not listed in requirements.txt. Use ➕ to add missing packages or 🔄 to update existing entries.
{% endblock %} {% block content %}
{% csrf_token %}
{% if show_check %} {% for row in compare_data %} {% endfor %} {% if compare_data|length == 0 %} {% endif %}
Installed package Version Status in Requirements.txt
{{ row.name }} {{ row.installed }} {% if row.status == "➕ Unlisted" %}
{% csrf_token %}
{% elif row.status == "🔄 Update" %}
{% csrf_token %}
{% else %} ✅ {% endif %}
{{ row.required }}
⚠️ Geen pakketten gevonden
📁 Download comparison data:
📤 JSON 📤 CSV 📤 TXT
{% endif %} {% endblock %}