Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions prefix_finder/frontend/templates/list.html
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,25 @@ <h2>Description</h2>

<div class="single-meta-info__instructions">
<h3>To find identifiers</h3>
{%if org_list.access.publicDatabase or org_list.access.onlineAccessDetails %}
{%if org_list.access.publicDatabase %}
<p>
A public database is available for this list at <a href='{{ org_list.access.publicDatabase }}' target="_blank">{{ org_list.access.publicDatabase }}</a>.
</p>
{% endif %}
{%if org_list.access.onlineAccessDetails %}
<p>
{{ org_list.access.onlineAccessDetails }}
</p>
{% endif %}
{% else %}
<p>
This list is not available online. You may need to contact the organization you plan to identify to ask if they have been given an identifier or registration number by {{ org_list.name.en }}.
</p>
{% endif %}

<p>{{ org_list.access.guidanceOnLocatingIds|urlize|linebreaks}}</p>
{% if org_list.links.opencorporates %}<p>This list can also be searched on <a href='{{ org_list.links.opencorporates }}' target="_blank">OpenCorporates</a>.</p>{% endif %}
</div>
</div>

Expand Down