{% extends "base.html" %} {% block title %}{{this.value(ns.RDFS.label)}}{% endblock %} {% block subtitle %} {% for type in this[ns.RDF.type] %} {% if type[ns.RDFS.subClassOf:ns.hbgd.Question] %}
{{type.value(ns.RDFS.label)}} {% endif %} {% endfor %} {% endblock %} {% block content %}

{{this.value(ns.prov.value) }}

Classes

    {% for class in this.subjects(ns.hbgd.raisedBy) %}
  • {{class.value(ns.RDFS.label)}} {% if class.value(ns.skos.definition) %}{{class.value(ns.skos.definition)}}{% endif %}
  • {% endfor %}

Details

See also
{% for article in this[ns.RDFS.seeAlso] %}
{{article.value(ns.RDFS.label) or article.identifier}}
{% endfor %}
References
{% for ref in this[ns.dc.references] %}

{{ref.value(ns.RDFS.label) or ref.identifier}}

{% endfor %}

Related Questions

{% if this[ns.RDF.type:ns.hbgd.SubQuestion] %}
Prioritized
{% for q in this[ns.skos.related] %} {% if q[ns.RDF.type:ns.hbgd.PrioritizedQuestion] %}

{{q.value(ns.RDFS.label) or q.identifier}}

{% endif %} {% endfor %}
{% endif %}
Sub Questions
{% for q in this[ns.skos.related] %} {% if q[ns.RDF.type:ns.hbgd.SubQuestion] %}

{{q.value(ns.RDFS.label) or q.identifier}}

{% endif %} {% endfor %}
{% endblock %}