{% trans "Available package updates" %}
{% if updates %}
{% trans "Package name" %} |
{% trans "Installed Version" %} |
{% trans "Available Version" %} |
{% trans "Security Update" %} |
{% for update in updates %}
{{ update.package.name }} |
{% if update.installedVersion %}{{ update.installedVersion }}{% else %}—{% endif %} |
{% if update.get_changelog_url %}
{{ update.candidateVersion }}
{% else %}
{{ update.candidateVersion }}
{% endif %}
|
{% if update.is_security %}
{% endif %}
|
{% endfor %}
{% else %}
{% blocktrans with host.name as hostname %} No updated versions found for packages on {{ hostname }} {% endblocktrans %}
{% endif %}
{% endblock %}