{% extends "ontologies_base.html" %} {% block content %}
{% csrf_token %} {{ form.non_field_errors }}
{% if ontology.id %}

Edit list, thesaurus, vocabulary or ontology

{% else %}

Add list, thesaurus, vocabulary or ontology

{% endif %}

Name or notes

Not necessary, only for managing purpose

{{ form.subject.errors }} {{ form.title }}

Notes

{{ form.description.errors }} {{ form.description }}

Datasource (ontology or list of named entities)

Set an Reference (URI) or upload a file

Reference

Reference to existing file or external web resource:

{{ form.uri.errors }} {{ form.uri }}

For example for a local file like file:///home/user/Documents/myOntology.rdf or for a web resource like http://www.example.domain/myOntology.rdf

OR

Upload

Upload a list or ontology

{{ form.file.errors }} {{ form.file }}

Facet / Field / Property

Leave unset (default) to use an own additional facet / field / column / property named to the title or filename of this list or ontology.

{{ form.facet.errors }} {{ form.facet }} [Manage target facets / fields / properties]

Save changes

{% if ontology.id %} Cancel {% else %} Cancel {% endif %}
{% endblock content %}