{% extends "base.html" %} {% load i18n %} {% load url from future %} {% block title %}{% trans "Hosts for package" %} {{ package.name }}{% endblock %} {% block heading %}{% trans "Hosts with pending updates for" %} {{ package.name }}{% endblock %} {% block content %}
{% for update in updates %} {% endfor %}
{% trans "Hostname" %} {% trans "Installed Version" %} {% trans "Available Version" %} {% trans "Security" %}
{{ update.host.name }} {% if update.installedVersion %}{{ update.installedVersion }}{% else %}{% endif %} {% if update.get_changelog_url %} {{ update.candidateVersion }} {% else %} {{ update.candidateVersion }} {% endif %} {% if update.is_security %} {% trans {% endif %}
{% endblock %}