forked from OpenDataGIS/ckanext-facet_scheming
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #112 from mjanez/develop
Improve metadata fields truncation
- Loading branch information
Showing
3 changed files
with
120 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
95 changes: 95 additions & 0 deletions
95
ckanext/schemingdcat/templates/package/snippets/additional_info.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
<section class="additional-info"> | ||
<h3>{{ _('Additional Info') }}</h3> | ||
<table class="table table-striped table-bordered table-condensed"> | ||
<thead> | ||
<tr> | ||
<th scope="col">{{ _('Field') }}</th> | ||
<th scope="col">{{ _('Value') }}</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
{% block package_additional_info %} | ||
{% if pkg_dict.url %} | ||
<tr> | ||
<th scope="row" class="dataset-label">{{ _('Source') }}</th> | ||
{% if h.is_url(pkg_dict.url) %} | ||
<td class="dataset-details" property="foaf:homepage"> | ||
<a href="{{ pkg_dict.url }}" rel="foaf:homepage" target="_blank" class="truncate-link"> | ||
{{ pkg_dict.url }} | ||
</a> | ||
</td> | ||
{% else %} | ||
<td class="dataset-details" property="foaf:homepage">{{ pkg_dict.url }}</td> | ||
{% endif %} | ||
</tr> | ||
{% endif %} | ||
|
||
{% if pkg_dict.author_email %} | ||
<tr> | ||
<th scope="row" class="dataset-label">{{ _("Author") }}</th> | ||
<td class="dataset-details" property="dc:creator">{{ h.mail_to(email_address=pkg_dict.author_email, name=pkg_dict.author) }}</td> | ||
</tr> | ||
{% elif pkg_dict.author %} | ||
<tr> | ||
<th scope="row" class="dataset-label">{{ _("Author") }}</th> | ||
<td class="dataset-details" property="dc:creator">{{ pkg_dict.author }}</td> | ||
</tr> | ||
{% endif %} | ||
|
||
{% if pkg_dict.maintainer_email %} | ||
<tr> | ||
<th scope="row" class="dataset-label">{{ _('Maintainer') }}</th> | ||
<td class="dataset-details" property="dc:contributor">{{ h.mail_to(email_address=pkg_dict.maintainer_email, name=pkg_dict.maintainer) }}</td> | ||
</tr> | ||
{% elif pkg_dict.maintainer %} | ||
<tr> | ||
<th scope="row" class="dataset-label">{{ _('Maintainer') }}</th> | ||
<td class="dataset-details" property="dc:contributor">{{ pkg_dict.maintainer }}</td> | ||
</tr> | ||
{% endif %} | ||
|
||
{% if pkg_dict.version %} | ||
<tr> | ||
<th scope="row" class="dataset-label">{{ _("Version") }}</th> | ||
<td class="dataset-details">{{ pkg_dict.version }}</td> | ||
</tr> | ||
{% endif %} | ||
|
||
{% if h.check_access('package_update',{'id':pkg_dict.id}) %} | ||
<tr> | ||
<th scope="row" class="dataset-label">{{ _("State") }}</th> | ||
<td class="dataset-details">{{ _(pkg_dict.state) }}</td> | ||
</tr> | ||
{% endif %} | ||
{% if pkg_dict.metadata_modified %} | ||
<tr> | ||
<th scope="row" class="dataset-label">{{ _("Last Updated") }}</th> | ||
<td class="dataset-details"> | ||
{% snippet 'snippets/local_friendly_datetime.html', datetime_obj=pkg_dict.metadata_modified %} | ||
</td> | ||
</tr> | ||
{% endif %} | ||
{% if pkg_dict.metadata_created %} | ||
<tr> | ||
<th scope="row" class="dataset-label">{{ _("Created") }}</th> | ||
|
||
<td class="dataset-details"> | ||
{% snippet 'snippets/local_friendly_datetime.html', datetime_obj=pkg_dict.metadata_created %} | ||
</td> | ||
</tr> | ||
{% endif %} | ||
|
||
{% block extras scoped %} | ||
{% for extra in h.sorted_extras(pkg_dict.extras) %} | ||
{% set key, value = extra %} | ||
<tr rel="dc:relation" resource="_:extra{{ i }}"> | ||
<th scope="row" class="dataset-label" property="rdfs:label">{{ _(key|e) }}</th> | ||
<td class="dataset-details truncate-td" property="rdf:value">{{ value }}</td> | ||
</tr> | ||
{% endfor %} | ||
{% endblock %} | ||
|
||
{% endblock %} | ||
</tbody> | ||
</table> | ||
</section> |