14 lines
498 B
HTML
14 lines
498 B
HTML
{% extends "source/read_base.html" %}
|
|
|
|
{% block primary_content_inner %}
|
|
<section class="module-content">
|
|
<h1>{{ harvest_source.title or harvest_source.name }}</h1>
|
|
{% if harvest_source.notes %}
|
|
<p>{{ h.markdown_extract(harvest_source.notes)|urlize }}</p>
|
|
{% else %}
|
|
<p class="empty">{{ _('There is no description for this harvest source') }}</p>
|
|
{% endif %}
|
|
</section>
|
|
{% snippet "package/snippets/additional_info.html", pkg_dict=harvest_source %}
|
|
{% endblock %}
|