{% extends "default.html" %} {% block pagetitle %}{{ip}} Users{% endblock %} {% block content %}
Users who visited from {{ip}}
{% for ip_log in ip_logs %} {% endfor %}
Name First Used Last Used
{% with user=ip_log.user %} {% include "user_in_table.html" %} {% endwith %}
{% endblock %}