{% extends "layout.html" %}
{% block content %}
{{ host_info['computer_fqdn'] }}
{{ _("WAPT Status") }}
- {{ _("wapt-get.exe version: {0}").format(wapt_info['wapt-exe-version']) }}
- {{ _("wapt-get.py version: {0}").format(wapt_info['wapt-py-version']) }}
- {{ _("Host UUID: {0}").format(wapt.host_uuid) }}
- {{ _("Main WAPT Repository: {0}").format(wapt.repositories[0].repo_url) }}
- {{ _("WAPT server: {0}").format(wapt.waptserver.server_url) }}
- {{ _("Proxies: {0}").format(wapt.proxies) }}
- {{ _("Configuration file: {0}").format(wapt.config_filename) }}
- {{ _("Current status: {0}").format(wapt.runstatus or 'Up to date') }}
- {{ _("Last update status:") }}
- {{ _("Date: {0}").format(update_status['date']) }}
- {{ _("Upgradeable packages: {0}").format(', '.join(update_status['upgrades']) or 'None') }}
- {{ _("Errors: {0}").format(', '.join(update_status['errors']) or 'None') }}
{{ _("Authorized Packages's Signer certificates:") }}
CN | Issued by | Code signing | Is CA | sha256 fingerprint |
{% for certificate in wapt.authorized_certificates() %}
{{ certificate.cn }} |
{{ certificate.issuer_cn }} |
{{ certificate.is_code_signing }} |
{{ certificate.is_ca }} |
{{ certificate.fingerprint }} |
{% endfor %}
{{ _("Repositories:")}}
Name | URL | https certs | packages certs |
{% for repo in wapt.repositories %}
{{ repo.name }} |
{{ repo.repo_url }} |
{{ repo.verify_cert }} |
{% for cert in repo.cabundle.trusted_certificates() %} - {{cert.cn}}
{% endfor %} |
{% endfor %}
{{ _("Computer information") }}
- {{ _("Machine: {0}").format(host_info['computer_name']) }}
- {{ _("Current users: {0}").format(','.join(host_info['current_user'])) }}
- {{ _("Workgroup: {0}").format(host_info['workgroup_name']) }}
- {{ _("DNS Domain: {0}").format(host_info['dns_domain']) }}
- {{ _("IP Addresses: {0}").format(host_info['connected_ips']) }}
- {{ _("System manufacturer : {0}").format(host_info['system_manufacturer']) }}
- {{ _("System product name : {0}").format(host_info['system_productname']) }}
{% endblock %}