{% extends "webpage/base.html" %} {% load mptt_tags %} {% block Title %}{{ object }}{% endblock %} {% block content %}

{{object.scheme}} {% if user.is_authenticated %} Add Concept Add Collection {% endif %}

{% if object.scheme %} {% for concept,structure in object.scheme.has_concepts.all|tree_info %} {% if structure.new_level %}
  • {% else %}
  • {% endif %} {% if concept.id == object.id and concept.needs_review == False %} {{ concept.pref_label }} {% elif concept.id == object.id and concept.needs_review == True %} {{ concept.pref_label }} ! {% elif concept.id == object.id %} {{ concept.pref_label }} {% elif concept.id != object.id and concept.needs_review == True %} {{ concept.pref_label }} ! {% else %} {{ concept.pref_label }} {% endif %} {% for level in structure.closed_levels %}
{% endfor %} {% endfor %} {% endif %}

skos:Concept {{ object }} {% if user.is_authenticated %} {% endif %}

{% if object.pref_label %} {% endif %} {% if object.has_labels %} {% for label in object.has_labels.all %} {% endfor %} {% endif %} {% if object.notation %} {% endif %} {% if object.scheme %} {% endif %} {% if object.collection.all %} {% endif %} {% if object.legacy_id %} {% endif %} {% if object.creator %} {% endif %} {% if object.contributor %} {% endif %} {% if object.has_notes %} {% for note in object.has_notes.all %} {% endfor %} {% endif %} {% if object.has_sources %} {% for source in object.has_sources.all %} {% endfor %} {% endif %} {% if object.broader_concept %} {% endif %} {% if object.narrower_concepts.all %} {% endif %} {% if object.related %} {% endif %} {% if object.broad_match %} {% endif %} {% if object.narrow_match %} {% endif %} {% if object.exact_match %} {% endif %} {% if object.related_match %} {% endif %} {% if object.close_match %} {% endif %} {% if object.date_created %} {% endif %} {% if object.date_modified %} {% endif %} {% if user.is_authenticated %} {% if object.created_by %} {% endif %} {% if object.needs_review == True %} {% endif %} {% endif %}
skos:prefLabel{% if object.pref_label_lang %} @{{object.pref_label_lang}}{% endif %} {{ object.pref_label }}
skos:{{label.label_type}} @{{label.language}} {{label.name}}
skos:notation {{object.notation}}
skos:inScheme {{object.scheme}}
member of skos:Collection {% for x in object.collection.all %} {{x}}
{% endfor %}
legacy id {{object.legacy_id}}
dc:creator {% for creator in object.creator_as_list %}
  • {{creator}}
  • {% endfor %}
    dc:contributor {% for contributor in object.contributor_as_list %}
  • {{contributor}}
  • {% endfor %}
    skos:{{note.note_type}} @{{note.language}} {{note.name}}
    dc:source @{{source.language}} {{source.name}}
    skos:broader {{object.broader_concept}}
    skos:narrower {% for x in object.narrower_concepts.all %} {{x}}
    {% endfor %}
    skos:related {% for x in object.related_as_list %}
  • {{x|urlize}}
  • {% endfor %}
    skos:broadMatch {% for x in object.broad_match_as_list %}
  • {{x|urlize}}
  • {% endfor %}
    skos:narrowMatch {% for x in object.narrow_match_as_list %}
  • {{x|urlize}}
  • {% endfor %}
    skos:exactMatch {% for x in object.exact_match_as_list %}
  • {{x|urlize}}
  • {% endfor %}
    skos:relatedMatch {% for x in object.related_match_as_list %}
  • {{x|urlize}}
  • {% endfor %}
    skos:closeMatch {% for x in object.close_match_as_list %}
  • {{x|urlize}}
  • {% endfor %}
    dct:created {{object.date_created}}
    dct:modified {{object.date_modified}}
    created by {{object.created_by}}
    Needs review
    download this concept
  • RDF/XML
  • Turtle
  • {% if user.is_authenticated %} {% if history %}
    {% for x in history %}
  • {% if forloop.last %} {{ x.revision.date_created }} created by {{ x.revision.user }} {% else %} {{ x.revision.date_created }} changed by {{ x.revision.user }} {% endif %}
  • {% endfor %}
    {% endif %} {% endif %}
    {% endblock content %}