{% 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'] }}
{% 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'] %}

References

{{ resource['references']|safe }}

{% endif %}

Created

{{ resource['created'].strftime("%Y-%m-%d %H:%M") }} UTC
{{ relationships_links(relationships) }} {% if resource.tools %} TOOLS: {% for tool in resource.tools %} {{ tool.name }}; {% endfor %} {% endif %} {% if resource.practices %} PRACTICES: {% for practice in resource.practices %} {{ practice.name }}; {% endfor %} {% endif %} {% if resource.books %} BOOKS: {% for book in resource.books %} {{ book.name }}; {% endfor %} {% endif %}
{% endblock %}