{% extends theme('base.html') %} {% from theme('macros/follow.html') import follow_btn with context %} {% from theme('macros/issues.html') import issues_btn with context %} {% from theme('macros/share.html') import share_btn with context %} {% set meta = { 'title': reuse.title, 'description': reuse.description|mdstrip(60)|forceescape, 'image': reuse.image(external=True), 'keywords': [_('reuse')] + reuse.tags, } %} {% set bundle = 'reuse' %} {% set body_class = 'reuse-display' %} {% block extra_head %} {% endblock %} {% block breadcrumb %}
{% if reuse.organization %} {% set author_name = reuse.organization.name %} {% set author_url = url_for('organizations.show', org=reuse.organization) %} {% elif reuse.owner %} {% set author_name = reuse.owner.fullname %} {% set author_url = url_for('users.show', user=reuse.owner) %} {% endif %} {{ _('Published on %(date)s by %(user)s', date=reuse.created_at|dateformat(format='long'), user='%(name)s'|format( name=author_name, url=author_url )|safe ) }} {% if reuse.private %} {{ _('Private') }} {% endif %} {% if reuse.deleted %} {{ _('Deleted') }} {% endif %}
{{ _('Discussion between the organization and the community about this dataset.') }}