1
0
mirror of https://github.com/peeringdb/peeringdb.git synced 2024-05-11 05:55:09 +00:00
Files
peeringdb-peeringdb/peeringdb_server/templates/email/notify-pdb-admin-vq-org-key.txt
Matt Griswold 5147028bee clean up / format / poetry (#1000)
* stub in poetry for pipenv

* re-add tester image

* add pre-commit / formatting

* fix ghactions

* revert test data whitespace, exclude tests/data

* revert ws

* decruft, rm tox/pipenv

* install dev packages for base image

* add lgtm config to force to py3
2021-07-10 10:12:35 -05:00

28 lines
1.1 KiB
Plaintext

{% load i18n %}
{% language 'en' %}
{% blocktrans trimmed%}
A new '{{ entity_type_name }}' has been created and requires your approval.
{% endblocktrans %}
{% if suggested %}
{% blocktrans trimmed %}
This {{ entity_type_name }} has been submitted as a suggestion and will need to be assigned the appropriate organization after review
{% endblocktrans %}
{% endif %}
{% if rdap %}
{% trans "We retrieved the RiR entry for the specified ASN" %} {{ item.asn }}
{% if not suggested %}
{% trans "but found no match with the requesting Organization API Key email. Here are the email addresses we gathered" %}:
{% endif %}
{% for email in rdap.emails %} - {{ email }} {% endfor %}
{% endif %}
{% trans "Name" %}: <a href="{{ item.view_url }}">{{ item }}</a>
{% trans "Requested by Organization API Key" %}:
- {% trans "Organization" %}: {{ org_key.org.name }}
- {% trans "API key prefix" %}: {{ org_key.prefix }}
- {% trans "Email" %}: {{ org_key.email }}
{% trans "You can go to" %} <a href="{{ edit_url }}">{{ edit_url }}</a> {% trans "to view and approve or deny this entry" %}{% endlanguage %}