{% extends "request_detail.html" %}
{% block body %}
{# TRANS: A header for a modal window used to add and/or view notes about a specific user. The user's name and the authentication method they used to login (for example, Test Auth, Brave Core, or EVE SSO) are displayed. #}
{% trans name=srp_request.submitter.name, authmethod=srp_request.submitter.authmethod %}Notes for '{{ name }}' from {{ authmethod }}{% endtrans %}
{% for note in srp_request.submitter.notes %}
{{ '
'|safe if loop.first }}
{# TRANS: A small line of text showing who made a note, and the date and time that note was made. #}
{% trans name=note.noter.name, timestamp=note.timestamp|datetimeformat %}{{ name }} at {{ timestamp }}{% endtrans %}
{{ note.content|safe|urlize(30) }}
{{ '
'|safe if loop.last }}
{% else %}
{% trans %}This user doesn't have any notes.{% endtrans %}
{% endfor %}
{{ super() }}
{% endblock body %}
{% block info %}
{{ super() }}
{# TRANS: Label next to a button that shows the interface for adding/viewing notes about a user. #}