Sha256: c4dd0490b0811f9abd3edab9871a5729b2a2e1c5e46ab18ade1146066be19f39

Contents?: true

Size: 1.03 KB

Versions: 3

Compression:

Stored size: 1.03 KB

Contents

- # TODO: possible future improvements
- # - break up list of properties by graph
- # - show inbound links

- title = resource.human_readable_name
- rdf_type_label = PublishMyData::RdfType.find(resource.rdf_type.first.to_s).label rescue nil

- highlight_in_menu "catalogue"
- set_page_title("Resource: #{title}")
- page_kind 'resource'
- set_pmd_page_class 'resource'

- additional_formats_for_resource(resource.uri)

%header
	= fullwidth do
		= badge("resource")
		= page_title(title)
		= title_uri resource.uri.to_s
	= fullwidth do
		=label(resource.read_predicate(RDF.type).many? ? 'Types' : 'Type')
		%p= resource.read_predicate(RDF.type).map { |t| resource_uri_or_label(resource, t) }.join(", ").html_safe
		- if resource.theme
			=label("Theme")
			%p= link_to "#{resource.theme.label || resource.theme.uri}", theme_path(resource.theme)
		- if resource.dataset
			=label("Dataset")
			%p= link_to "#{resource.dataset.label || resource.dataset.uri}", dataset_path(resource.dataset)

= render  'publish_my_data/stripes/resource_data', resource: resource

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
publish_my_data-1.3.7 app/views/publish_my_data/resources/show.html.haml
publish_my_data-1.3.6 app/views/publish_my_data/resources/show.html.haml
publish_my_data-1.3.5 app/views/publish_my_data/resources/show.html.haml