{% extends 'base.html' %} {% block content %}
{{ resource['type'] }}

{% block title %} {% autoescape false %} {{ resource['name'] | replace(" ","
") }} {% endautoescape %} {% endblock %}

{% if current_user.is_authenticated %} {% if resource['type'] == 'tool' %} {% elif resource['type'] == 'practice' %} {% endif %} {% endif %}
{% if resource['description'] %}

Description

{{ resource['description']|safe }}
{% endif %} {% if resource['developer'] %}

Developer

{% if resource['developerUrl'] %} {{ resource['developer'] }} {% else %} {{ resource['developer'] }} {% endif %}
{% endif %} {% if resource['license'] %}

Software license

{{ resource['license'] }}
{% endif %} {% if resource['scriptingLanguage'] %}

Software language(s)

{{ resource['scriptingLanguage'] }}
{% endif %} {% if resource['projectUrl'] %}

Project page

{{ resource['projectUrl'] }}
{% endif %} {% if resource['repositoryUrl'] %}

Code repository

{{ resource['repositoryUrl'] }}
{% endif %} {% if resource['ingestFormats'] %}

Import / ingest formats

{{ resource['ingestFormats'] }}
{% endif %} {% if resource['outputFormats'] %}

Output formats

{{ resource['outputFormats'] }}
{% endif %} {% if resource['status'] %}

Platform status

{{ resource['status'] }}
{% endif %} {% if resource['longDescription'] %}

Full description

{{ resource['longDescription']|safe }}
{% endif %} {% if resource['experimental'] %}

Experimental uses

{{ resource['experimental']|safe }}
{% endif %} {% if resource['considerations'] %}

Considerations

{{ resource['considerations']|safe }}
{% endif %} {% if resource['references'] %}

Further reading

{{ resource['references']|safe }}
{% endif %}
{{ relationships_links(resource) }}
{% endblock %}