Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion src/incatools/odk/templates/_dynamic_files.jinja2
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,11 @@ import: {{ project.uribase }}/{% if project.uribase_suffix is not none %}{{ proj
{% endfor -%}
{% endif -%}
{% endif -%}
{% if project.components is defined -%}
{% for component in project.components.products -%}
import: {{ project.uribase }}/{% if project.uribase_suffix is not none %}{{ project.uribase_suffix }}{% else %}{{ project.id }}{% endif %}/components/{{ component.filename }}
{% endfor -%}
{% endif -%}
{% if project.use_dosdps -%}
import: {{ project.uribase }}/{% if project.uribase_suffix is not none %}{{ project.uribase_suffix }}{% else %}{{ project.id }}{% endif %}/patterns/definitions.owl
{% if project.import_pattern_ontology -%}
Expand Down Expand Up @@ -85,7 +90,11 @@ Import(<{{ project.uribase }}/{% if project.uribase_suffix is not none %}{{ proj
{% endfor -%}
{% endif -%}
{% endif %}

{% if project.components is defined -%}
{% for component in project.components.products -%}
Import(<{{ project.uribase }}/{% if project.uribase_suffix is not none %}{{ project.uribase_suffix }}{% else %}{{ project.id }}{% endif %}/components/{{ component.filename }}>)
{% endfor -%}
{% endif -%}
{% if project.use_dosdps -%}
Import(<{{ project.uribase }}/{% if project.uribase_suffix is not none %}{{ project.uribase_suffix }}{% else %}{{ project.id }}{% endif %}/patterns/definitions.owl>)
{% if project.import_pattern_ontology -%}
Expand Down
Loading