{% extends "agent2/base.html" %} {% load i18n %} {% block content %}
{% if agent2_settings.server and agent2_settings.hash_id and agent2_settings.password%}
{% trans "Server Configuration" %} {% for field, value in agent2_settings.items %}
{{ field }}
{% ifequal field "server" %} {{ value }} {% else %} {{ value }} {% endifequal %}
{% endfor %}
{% else %}
{% trans "Not yet configured, click here to setup" %}
{% endif %}
{% trans "Commit Log" %} {% for record in records %}
{% trans "Time" %}
{{ record.time }}
{% trans "Found Records" %}
{{ record.commited_scan_records }}
{% trans "SDP Records" %}
{{ record.commited_sdp_records }}
{% trans "success" %}
{{ record.success }}
{% endfor %}
{% endblock %}