-
-
- {% if mediaform.errors %}
-
- The following fields have errors. Please correct and try again.
- {{mediaform.errors}}
-
- {% endif %}
-
-
-{% if user.is_superuser %}
- {% if action == "edit" %}
- {% make_button "Cancel" "/media/%s" media.handle args %}
-
-
-
-
- {% else %}
- {% ifequal action "add" %}
- {% make_button "Cancel" "/media/" args %}
-
-
-
-
- {% else %}
-
- {% make_button "+Add Media" "/media/add" args %}
- {% make_button "?Edit Media" "/media/%s/edit" media.handle args %}
- {% make_button "-Delete Media" "/media/%s/delete" media.handle args %}
-
- {% endifequal %}
- {% endif %}
-{% else %}
-{% endif %}
-
-
-
-
-
-
- {% citation_table media user action "/citation/$act/media/%s" media.handle %}
-
-
- {% note_table media user action "/note/$act/media/%s" media.handle %}
-
-
- {% attribute_table media user action "/attribute/add/media/%s" media.handle %}
-
-
- {% media_reference_table media user action %}
-
-
- {% history_table media user action %}
-
-
-
-
-{% endblock %}
-
diff --git a/data/templates/view_name_detail.html b/data/templates/view_name_detail.html
deleted file mode 100644
index e995a4f0c..000000000
--- a/data/templates/view_name_detail.html
+++ /dev/null
@@ -1,148 +0,0 @@
-{% extends "view_page_detail.html" %}
-{% load my_tags %}
-
-{% block content %}
-
-
-
-
-
- {% filter breadcrumb %}
- {% format "/browse|Browse" %} ||
- {% format "/person|People" %} ||
- {% format "/person/%s|Person [%s]" object.handle object.gramps_id %} ||
- {% format "/person/%s/name/%s|Name #%s" object.handle order order %}
- {% endfilter %}
-
-
{{nameform.model|make_name:user}} [{{person.gramps_id}}]
-
-
{% comment %} 4 cols {% endcomment %}
-
-
-{% for error in nameform.errors %}
- {{error}}
-{% endfor %}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{nameform.group_as.label}}:
- {% render nameform.group_as user action %}
-
- {{nameform.sort_as.label}}:
- {% render nameform.sort_as user action %}
-
- {{nameform.display_as.label}}:
- {% render nameform.display_as user action %}
-
- {{nameform.text.label}}:
- {% render nameform.text user action %}
-
-
-
-
-
-
- {% surname_table person user action "/person/%s/name/%s/surname/add" person.handle nameform.model.order %}
-
-
- {% name_table person user action "/person/%s/name" person.handle %}
-
-
- {% citation_table nameform.model user action "/citation/add/person/%s/name/%s" person.handle nameform.model.order %}
-
-
- {% note_table nameform.model user action "/note/$act/person/%s/name/%s" person.handle nameform.model.order %}
-
-
-
-{% if user.is_superuser %}
- {% ifequal action "add" %}
- {% make_button "Cancel" "/person/%s" person.handle args "#tab-names" %}
-
-
-
-
- {% else %}
- {% ifequal action "edit" %}
- {% make_button "Cancel" "/person/" args "#tab-names" %}
-
-
-
-
- {% else %}
-
- {% make_button "+Add Name" "/person/%s/name/add" person.handle args %}
- {% make_button "?Edit Name" "/person/%s/name/%s/edit" person.handle order args %}
- {% make_button "-Delete Name" "/person/%s/name/%s/delete" person.handle order args %}
-
- {% endifequal %}
- {% endifequal %}
-{% else %}
-{% endif %}
-
-{% endblock %}
-
diff --git a/data/templates/view_note_detail.html b/data/templates/view_note_detail.html
deleted file mode 100644
index a9aeac8f7..000000000
--- a/data/templates/view_note_detail.html
+++ /dev/null
@@ -1,117 +0,0 @@
-{% extends "view_page_detail.html" %}
-{% load my_tags %}
-
-{% block content %}
-
-
-
-
-{% include "detail_breadcrumb.html" %}
-
-
-
-
- {% if noteform.errors %}
-
- The following fields have errors. Please correct and try again.
- {{noteform.errors}}
-
- {% endif %}
-
-
-{% if user.is_superuser %}
- {% if action == "edit" %}
- {% make_button "Cancel" "/note/%s" note.handle args %}
-
-
-
-
- {% else %}
- {% ifequal action "add" %}
- {% make_button "Cancel" "/note/" args %}
-
-
-
-
- {% else %}
-
- {% make_button "+Add Note" "/note/add" args %}
- {% make_button "?Edit Note" "/note/%s/edit" note.handle args %}
- {% make_button "-Delete Note" "/note/%s/delete" note.handle args %}
-
- {% endifequal %}
- {% endif %}
-{% else %}
-{% endif %}
-
-
-
-
-
-
- {% note_reference_table note user action %}
-
-
- {% history_table note user action %}
-
-
-
-
-
-
-{% endblock %}
-
diff --git a/data/templates/view_notes.html b/data/templates/view_notes.html
deleted file mode 100644
index af5414811..000000000
--- a/data/templates/view_notes.html
+++ /dev/null
@@ -1,53 +0,0 @@
-{% extends "view_page.html" %}
-{% load my_tags %}
-
-{% block table_data %}
-
-
-
-{% endblock %}
-
-{% block admin_functions %}
-{% if user.is_superuser %}
-
- {% make_button "+Add Note" "/note/add" args %}
-
-{% endif %}
-{% endblock %}
diff --git a/data/templates/view_page.html b/data/templates/view_page.html
deleted file mode 100644
index d5568f209..000000000
--- a/data/templates/view_page.html
+++ /dev/null
@@ -1,28 +0,0 @@
-{% extends "gramps-base.html" %}
-{% load my_tags %}
-
-{% block title %}{{sitename}}: {{tview}} view {% endblock %}
-{% block heading %}{{sitename}}: {{tview}} view {% endblock %}
-
-{% block content %}
-
-
-
-
-{% paginator %}
-
-{% block table_data %}
{% endblock %}
-
-{% include "paginator.html" %}
-{% block admin_functions %}{% endblock %}
-{% endblock %}
diff --git a/data/templates/view_page_detail.html b/data/templates/view_page_detail.html
deleted file mode 100644
index 226fdc643..000000000
--- a/data/templates/view_page_detail.html
+++ /dev/null
@@ -1,6 +0,0 @@
-{% extends "gramps-base.html" %}
-{% load my_tags %}
-{% block title %}{{sitename}}: {{tview}} detail {% endblock %}
-{% block heading %}{{sitename}}: {{tview}} detail {% endblock %}
-{% block content %}
-{% endblock %}
diff --git a/data/templates/view_people.html b/data/templates/view_people.html
deleted file mode 100644
index 7fe99424c..000000000
--- a/data/templates/view_people.html
+++ /dev/null
@@ -1,68 +0,0 @@
-{% extends "view_page.html" %}
-{% load my_tags %}
-
-{% block table_data %}
-
-
-
-{% endblock %}
-
-{% block admin_functions %}
-{% if user.is_superuser %}
-
- {% make_button "+Add Person" "/person/add" args %}
-
-{% endif %}
-{% endblock %}
-
diff --git a/data/templates/view_person_detail.html b/data/templates/view_person_detail.html
deleted file mode 100644
index 48ccb7df5..000000000
--- a/data/templates/view_person_detail.html
+++ /dev/null
@@ -1,175 +0,0 @@
-{% extends "view_page_detail.html" %}
-{% load my_tags %}
-
-{% block content %}
-
-
-
-
-
-{% include "detail_breadcrumb.html" %}
-
-
-
{% comment %} 5 cols {% endcomment %}
-
- {% if personform.errors or nameform.errors or surnameform.errors or logform.errors %}
-
- The following fields have errors. Please correct and try again.
-
- {{personform.errors}}
- {{nameform.errors}}
- {{surnameform.errors}}
- {{logform.errors}}
-
-
- {% endif %}
-
-
-
-
-
-
-{% if logform %}
-
-{% endif %}
-
-{% if user.is_superuser %}
- {% if action == "edit" %}
- {% make_button "Cancel" "/person/%s" person.handle args %}
-
-
-
-
- {% else %}
- {% ifequal action "add" %}
- {% make_button "Cancel" "/person/" args %}
-
-
-
-
- {% else %}
-
- {% make_button "+Add Person" "/person/add" args %}
- {% make_button "?Edit Person" "/person/%s/edit" person.handle args %}
- {% make_button "-Delete Person" "/person/%s/delete" person.handle args %}
-
- {% endifequal %}
- {% endif %}
-{% else %}
-{% endif %}
-
-
-
-
-
-
-
- {% event_table person user action "/event/$act/person/%s" person.handle %}
-
-
- {% name_table person user action "/person/%s/name" person.handle %}
-
-
- {% citation_table person user action "/citation/$act/person/%s" person.handle %}
-
-
- {% attribute_table person user action "/attribute/$act/person/%s" person.handle %}
-
-
- {% address_table person user action "/place/$act/person/%s" person.handle %}
-
-
- {% note_table person user action "/note/$act/person/%s" person.handle %}
-
-
- {% media_table person user action "/media/$act/person/%s" person.handle %}
-
-
- {% internet_table person user action "/person/%s/$act/internet" person.handle %}
-
-
- {% association_table person user action "/person/%s/$act/association" person.handle %}
-
-
- {% lds_table person user action "/person/%s/$act/lds" person.handle %}
-
-
- {% person_reference_table person user action %}
-
-
- {% history_table person user action %}
-
-
-
-
-{% endblock %}
-
diff --git a/data/templates/view_place_detail.html b/data/templates/view_place_detail.html
deleted file mode 100644
index aee53aa6f..000000000
--- a/data/templates/view_place_detail.html
+++ /dev/null
@@ -1,148 +0,0 @@
-{% extends "view_page_detail.html" %}
-{% load my_tags %}
-
-{% block content %}
-
-
-
-
-
-{% include "detail_breadcrumb.html" %}
-
-
-
-
-
- {% if placeform.errors %}
-
- The following fields have errors. Please correct and try again.
- {{placeform.errors}}
-
- {% endif %}
-
-
-
-
-
-
-
-
-
-
-Street:
- FIXME
-
-
-Locality:
- FIXME
-Church parish:
- FIXME
-
-
-City:
- FIXME
-State:
- FIXME
-
-
-County:
- FIXME
-ZIP/Postal code:
- FIXME
-
-
-Country:
- FIXME
-Phone:
- FIXME
-
-
-
-
-
-
- {% location_table place user action "/location/$act/place/%s" place.handle %}
-
-
- {% citation_table place user action "/citation/$act/place/%s" place.handle %}
-
-
- {% note_table place user action "/note/$act/place/%s" place.handle %}
-
-
- {% media_table place user action "/media/$act/place/%s" place.handle %}
-
-
- {% internet_table place user action "/internet/$act/place/%s" place.handle %}
-
-
- {% place_reference_table place user action %}
-
-
- {% history_table place user action %}
-
-
-
-
-
-{% if user.is_superuser %}
- {% if action == "edit" %}
- {% make_button "Cancel" "/place/%s" place.handle args %}
-
-
-
-
- {% else %}
- {% ifequal action "add" %}
- {% make_button "Cancel" "/place/" args %}
-
-
-
-
- {% else %}
-
- {% make_button "+Add Place" "/place/add" args %}
- {% make_button "?Edit Place" "/place/%s/edit" place.handle args %}
- {% make_button "-Delete Place" "/place/%s/delete" place.handle args %}
-
- {% endifequal %}
- {% endif %}
-{% else %}
-{% endif %}
-
-{% endblock %}
-
diff --git a/data/templates/view_places.html b/data/templates/view_places.html
deleted file mode 100644
index 68bea4754..000000000
--- a/data/templates/view_places.html
+++ /dev/null
@@ -1,38 +0,0 @@
-{% extends "view_page.html" %}
-{% load my_tags %}
-
-{% block table_data %}
-
-
-
-
- #
- ID
- Title
-
-
-
- {% for place in page.object_list %}
-
- {{ forloop.counter|row_count:page }}
-
- [{{place.gramps_id}}]
- {% if user.is_authenticated or place.public %}
- {{place.title|escape|nbsp}}
- {% else %}
-
- {% endif %}
-
- {% endfor %}
-
-
-
-{% endblock %}
-
-{% block admin_functions %}
-{% if user.is_superuser %}
-
- {% make_button "+Add Places" "/place/add" args %}
-
-{% endif %}
-{% endblock %}
diff --git a/data/templates/view_report.html b/data/templates/view_report.html
deleted file mode 100644
index 76389c236..000000000
--- a/data/templates/view_report.html
+++ /dev/null
@@ -1,35 +0,0 @@
-{% extends "view_page.html" %}
-{% load my_tags %}
-
-{% block table_data %}
-
-
-
-
-
- #
- Report Name
-
-
-
-
-
- {% for report in page.object_list %}
-
- {{ forloop.counter|row_count:page }}
-
- {{report.name}}
- {% if user.is_authenticated %}
-
-
- {% else %}
-
-
- {% endif %}
-
- {% endfor %}
-
-
-
-{% endblock %}
-
diff --git a/data/templates/view_report_detail.html b/data/templates/view_report_detail.html
deleted file mode 100644
index 1dfdbda09..000000000
--- a/data/templates/view_report_detail.html
+++ /dev/null
@@ -1,51 +0,0 @@
-{% extends "view_page_detail.html" %}
-{% load my_tags %}
-
-{% block content %}
-
-
-
-{% include "detail_breadcrumb.html" %}
-
-
-
-
-{% endblock %}
-
diff --git a/data/templates/view_repositories.html b/data/templates/view_repositories.html
deleted file mode 100644
index ea9628449..000000000
--- a/data/templates/view_repositories.html
+++ /dev/null
@@ -1,42 +0,0 @@
-{% extends "view_page.html" %}
-{% load my_tags %}
-
-{% block table_data %}
-
-
-
-{% endblock %}
-
-{% block admin_functions %}
-{% if user.is_superuser %}
-
- {% make_button "+Add Repository" "/repository/add" args %}
-
-{% endif %}
-{% endblock %}
diff --git a/data/templates/view_repository.html b/data/templates/view_repository.html
deleted file mode 100644
index e10f81e07..000000000
--- a/data/templates/view_repository.html
+++ /dev/null
@@ -1,34 +0,0 @@
-{% extends "view_page.html" %}
-{% load my_tags %}
-
-{% block table_data %}
-
-
-
-{% endblock %}
-
diff --git a/data/templates/view_repository_detail.html b/data/templates/view_repository_detail.html
deleted file mode 100644
index 5ed6de844..000000000
--- a/data/templates/view_repository_detail.html
+++ /dev/null
@@ -1,101 +0,0 @@
-{% extends "view_page_detail.html" %}
-{% load my_tags %}
-
-{% block content %}
-
-
-
-
-
-{% include "detail_breadcrumb.html" %}
-
-
-
-
-
- {% if repositoryform.errors %}
-
- The following fields have errors. Please correct and try again.
- {{repositoryform.errors}}
-
- {% endif %}
-{% csrf_token %}
-
-{{repositoryform.name.label}}:
-{% render repositoryform.name user action %}
-
-
-
-
-{{repositoryform.repository_type.label}}:
-{% render repositoryform.repository_type user action %}
-{{repositoryform.gramps_id.label}}:
-{% render repositoryform.gramps_id user action %}
-{{repositoryform.private.label}}:
-{% render repositoryform.private user action %}
-
-
-
-{% if user.is_superuser %}
- {% if action == "edit" %}
- {% make_button "Cancel" "/repository/%s" repository.handle args %}
-
-
-
-
- {% else %}
- {% ifequal action "add" %}
- {% make_button "Cancel" "/repository/" args %}
-
-
-
-
- {% else %}
-
- {% make_button "+Add Repository" "/repository/add" args %}
- {% make_button "?Edit Repository" "/repository/%s/edit" repository.handle args %}
- {% make_button "-Delete Repository" "/repository/%s/delete" repository.handle args %}
-
- {% endifequal %}
- {% endif %}
-{% else %}
-{% endif %}
-
-
-
-
-
-
- {% address_table repository user action "/address/add/repository/%s" repository.handle %}
-
-
- {% internet_table repository user action "/internet/add/repository/%s" repository.handle %}
-
-
- {% note_table repository user action "/note/$act/repository/%s" repository.handle %}
-
-
- {% repository_reference_table repository user action %}
-
-
- {% history_table repository user action %}
-
-
-
-
-{% endblock %}
-
diff --git a/data/templates/view_source_detail.html b/data/templates/view_source_detail.html
deleted file mode 100644
index bf7519ef4..000000000
--- a/data/templates/view_source_detail.html
+++ /dev/null
@@ -1,109 +0,0 @@
-{% extends "view_page_detail.html" %}
-{% load my_tags %}
-
-{% block content %}
-
-
-
-
-
-{% include "detail_breadcrumb.html" %}
-
-
{{source.title|escape}}
-
-
{% comment %} 2 cols {% endcomment %}
-
- {% if sourceform.errors %}
-
- The following fields have errors. Please correct and try again.
- {{sourceform.errors}}
-
- {% endif %}
-{% csrf_token %}
-
-{{sourceform.title.label}}:
-{% render sourceform.title user action %}
-
-
-{{sourceform.gramps_id.label}}:
-{% render sourceform.gramps_id user action %}
-
-
-{{sourceform.abbrev.label}}:
-{% render sourceform.abbrev user action %}
-
-
-{{sourceform.pubinfo.label}}:
-{% render sourceform.pubinfo user action %}
-
-
-
-
-
-
-{% if user.is_superuser %}
- {% if action == "edit" %}
- {% make_button "Cancel" "/source/%s" source.handle args %}
-
-
-
-
- {% else %}
- {% ifequal action "add" %}
- {% make_button "Cancel" "/source/" args %}
-
-
-
-
- {% else %}
-
- {% make_button "+Add Source" "/source/add" args %}
- {% make_button "?Edit Source" "/source/%s/edit" source.handle args %}
- {% make_button "-Delete Source" "/source/%s/delete" source.handle args %}
-
- {% endifequal %}
- {% endif %}
-{% else %}
-{% endif %}
-
-
-
-
-
-
- {% note_table source user action "/note/$act/source/%s" source.handle %}
-
-
- {% media_table source user action "/media/$act/source/%s" source.handle %}
-
-
- {% data_table source user action "/data/add/source/%s" source.handle %}
-
-
- {% repository_table source user action "/repository/$act/source/%s" source.handle %}
-
-
- {% source_reference_table source user action %}
-
-
- {% history_table source user action %}
-
-
-
-
-{% endblock %}
diff --git a/data/templates/view_sources.html b/data/templates/view_sources.html
deleted file mode 100644
index 969e9333f..000000000
--- a/data/templates/view_sources.html
+++ /dev/null
@@ -1,44 +0,0 @@
-{% extends "view_page.html" %}
-{% load my_tags %}
-
-{% block table_data %}
-
-
-
-{% endblock %}
-
-{% block admin_functions %}
-{% if user.is_superuser %}
-
- {% make_button "+Add Source" "/source/add" args %}
-
-{% endif %}
-{% endblock %}
diff --git a/data/templates/view_surname_detail.html b/data/templates/view_surname_detail.html
deleted file mode 100644
index 069c1f7a4..000000000
--- a/data/templates/view_surname_detail.html
+++ /dev/null
@@ -1,84 +0,0 @@
-{% extends "view_page_detail.html" %}
-{% load my_tags %}
-
-{% block content %}
-
-
-
-
-
- {% filter breadcrumb %}
- {% format "/browse|Browse" %} ||
- {% format "/person|People" %} ||
- {% format "/person/%s|Person [%s]" object.handle object.gramps_id %} ||
- {% format "/person/%s/name/%s|Name #%s" object.handle order order %} ||
- {% format "/person/%s/name/%s/surname/%s|Surname #%s" object.handle order sorder sorder %}
- {% endfilter %}
-
-
{{person|make_name:user}} [{{person.gramps_id}}]
-
-
{% comment %} 4 cols {% endcomment %}
-
-{% for error in form.errors %}
- {{error}}
-{% endfor %}
-{% csrf_token %}
-
- {{surnameform.name_origin_type.label}}:
- {% render surnameform.name_origin_type user action %}
-
-
- {{surnameform.primary.label}}:
- {% render surnameform.primary user action %}
-
-
- {{surnameform.prefix.label}}:
- {% render surnameform.prefix user action %}
-
-
- {{surnameform.surname.label}}:
- {% render surnameform.surname user action %}
-
-
- {{surnameform.connector.label}}:
- {% render surnameform.connector user action %}
-
-
-
-
-
-
-{% if user.is_superuser %}
- {% if action == "edit" %}
- {% make_button "Cancel" "/person/%s/name/%s/surname/%s" person.handle order sorder args %}
-
-
-
-
- {% else %}
- {% if action == "add" %}
- {% make_button "Cancel" "/person/%s/name/%s" person.handle order args %}
-
-
-
-
- {% else %}
-
- {% make_button "+Add Surname" "/person/%s/name/%s/surname/add" person.handle order args %}
- {% make_button "?Edit Surname" "/person/%s/name/%s/surname/%s/edit" person.handle order sorder args %}
- {% make_button "-Delete Surname" "/person/%s/name/%s/surname/%s/delete" person.handle order sorder args %}
-
- {% endif %}
- {% endif %}
-{% endif %}
-
-{% endblock %}
-
diff --git a/data/templates/view_tag.html b/data/templates/view_tag.html
deleted file mode 100644
index 962cfb3c7..000000000
--- a/data/templates/view_tag.html
+++ /dev/null
@@ -1,28 +0,0 @@
-{% extends "view_page.html" %}
-{% load my_tags %}
-
-{% block table_data %}
-
-
-
-
- Item #
- Text
-
-
-
- {% for tag in page.object_list %}
-
- {{ forloop.counter|row_count:page }}
- {% if user.is_authenticated %}
- {{tag.name|escape}}
- {% else %}
- [Private]
- {% endif %}
-
- {% endfor %}
-
-
-
-{% endblock %}
-
diff --git a/data/templates/view_tag_detail.html b/data/templates/view_tag_detail.html
deleted file mode 100644
index eae9c667c..000000000
--- a/data/templates/view_tag_detail.html
+++ /dev/null
@@ -1,81 +0,0 @@
-{% extends "view_page_detail.html" %}
-{% load my_tags %}
-
-{% block content %}
-
-
-
-
-
-{% include "detail_breadcrumb.html" %}
-
-
-
-
-
- {% if tagform.errors %}
-
- The following fields have errors. Please correct and try again.
- {{tagform.errors}}
-
- {% endif %}
-{% csrf_token %}
-
-{{tagform.name.label}}:
-{% render tagform.name user action %}
-
-
-{{tagform.color.label}}:
-{% render tagform.color user action %}
-
-
-{{tagform.priority.label}}:
-{% render tagform.priority user action %}
-
-
-
-{% if user.is_superuser %}
- {% if action == "edit" %}
- {% make_button "Cancel" "/tag/%s" tag.handle args %}
-
-
-
-
- {% else %}
- {% ifequal action "add" %}
- {% make_button "Cancel" "/tag/" args %}
-
-
-
-
- {% else %}
-
- {% make_button "+Add Tag" "/tag/add" args %}
- {% make_button "?Edit Tag" "/tag/%s/edit" tag.handle args %}
- {% make_button "-Delete Tag" "/tag/%s/delete" tag.handle args %}
-
- {% endifequal %}
- {% endif %}
-{% else %}
-{% endif %}
-
-
-
-
- {% tag_reference_table tag user action %}
-
-
-
-
-{% endblock %}
-
diff --git a/data/templates/view_tags.html b/data/templates/view_tags.html
deleted file mode 100644
index c51f9e843..000000000
--- a/data/templates/view_tags.html
+++ /dev/null
@@ -1,42 +0,0 @@
-{% extends "view_page.html" %}
-{% load my_tags %}
-
-{% block table_data %}
-
-
-
-{% endblock %}
-
-{% block admin_functions %}
-{% if user.is_superuser %}
-
- {% make_button "+Add Tag" "/tag/add" args %}
-
-{% endif %}
-{% endblock %}
diff --git a/setup.py b/setup.py
index 124f5eb0c..d96959734 100755
--- a/setup.py
+++ b/setup.py
@@ -444,10 +444,6 @@ data_files_gui.append(('share/gramps/images/hicolor/22x22/actions', ICON_22))
data_files_gui.append(('share/gramps/images/hicolor/48x48/actions', ICON_48))
data_files_gui.append(('share/gramps/images/hicolor/scalable/actions', ICON_SC))
-TEMPLATE_FILES = glob.glob(os.path.join('data/templates', '*.html'))
-ADMIN_FILES = glob.glob(os.path.join('data/templates/admin', '*.html'))
-REG_FILES = glob.glob(os.path.join('data/templates/registration', '*.html'))
-
data_files = data_files_core + data_files_gui
#-------------------------------------------------------------------------