eventcally/project/templates/manage/verification_requests_outgoing.html
2022-08-24 14:34:05 +02:00

41 lines
1.6 KiB
HTML

{% extends "layout.html" %}
{% set active_id = "verification_requests_outgoing" %}
{% from "_macros.html" import render_logo, render_location_prop, render_fax_prop, render_phone_prop, render_email_prop,
render_link_prop, render_admin_unit_badges, render_pagination %}
{%- block title -%}
{{ _('Verification requests') }}
{%- endblock -%}
{% block content %}
<h1 class="mb-1">{{ _('Verification requests') }}</h1>
<p class="text-muted">{{ _('Here you can find organizations that can verify other organizations.') }}</p>
{% for other_admin_unit in admin_units %}
<div class="card mb-3">
<div class="card-body p-3">
<h2 class="mt-0">
<a href="{{ url_for('organizations', path=other_admin_unit.id) }}" class="text-body">{{
other_admin_unit.name }}</a>
{{ render_admin_unit_badges(other_admin_unit) }}
</h2>
<p>{{ other_admin_unit.incoming_verification_requests_text }}</p>
<div class="row">
{% if other_admin_unit.logo_id %}
<div class="col-12 col-sm-auto order-sm-last">{{ render_logo(other_admin_unit.logo) }}</div>
{% endif %}
<div class="col-12 col-sm">
{{ render_link_prop(other_admin_unit.url) }}
{{ render_email_prop(other_admin_unit.email) }}
{{ render_phone_prop(other_admin_unit.phone) }}
{{ render_fax_prop(other_admin_unit.fax) }}
{{ render_location_prop(other_admin_unit.location) }}
</div>
</div>
</div>
</div>
{% endfor %}
<div class="my-4">{{ render_pagination(pagination) }}</div>
{% endblock %}