diff --git a/core/settings.py b/core/settings.py
index d5940ee..da38096 100644
--- a/core/settings.py
+++ b/core/settings.py
@@ -40,7 +40,7 @@
ALLOWED_HOSTS = ["cmp-production.up.railway.app", "*"]
-CSRF_TRUSTED_ORIGINS = ["https://cmp-production.up.railway.app"]
+CSRF_TRUSTED_ORIGINS = ["https://cmp-production.up.railway.app", "https://cmp.oxenfor.de" ]
INTERNAL_IPS = [
# ...
diff --git a/templates/cmp/cemeteries.html b/templates/cmp/cemeteries.html
index 2dc1c0c..f3b7a37 100644
--- a/templates/cmp/cemeteries.html
+++ b/templates/cmp/cemeteries.html
@@ -3,6 +3,7 @@
{% block title %}Cemeteries {% endblock %}
{% block content %}
+
Cemeteries
@@ -27,6 +28,5 @@ Cemeteries
{% endfor %}
-
-
-{% endblock %}
\ No newline at end of file
+{% endblock %}
+
\ No newline at end of file
diff --git a/templates/cmp/edit-cemeteries.html b/templates/cmp/edit-cemeteries.html
index 83b9dba..cfbcb9b 100644
--- a/templates/cmp/edit-cemeteries.html
+++ b/templates/cmp/edit-cemeteries.html
@@ -3,16 +3,16 @@
{% block title %}Cemeteries Form{% endblock %}
{% block content %}
-
Edit Cemetery
-
-
-
+
+
Edit Cemetery
+
+
-
-{% endblock %}
\ No newline at end of file
+ {% endblock %}
+
\ No newline at end of file
diff --git a/templates/cmp/edit-companies.html b/templates/cmp/edit-companies.html
index dbf460a..4edfe88 100644
--- a/templates/cmp/edit-companies.html
+++ b/templates/cmp/edit-companies.html
@@ -1,17 +1,20 @@
{% extends "base.html" %}
{% load static crispy_forms_tags %}
-{% block title %}Decorations Form{% endblock %}
+{% block title %}Companies Form{% endblock %}
{% block content %}
-
Edit Decoration
-
-
-
+
+
Edit Companies
-{% endblock %}
\ No newline at end of file
+
+
+
+
+{% endblock %}
+
\ No newline at end of file
diff --git a/templates/cmp/edit-countries.html b/templates/cmp/edit-countries.html
index 74cccf5..38406ff 100644
--- a/templates/cmp/edit-countries.html
+++ b/templates/cmp/edit-countries.html
@@ -3,7 +3,8 @@
{% block title %}Country Form{% endblock %}
{% block content %}
-
Edit Country Details
+
+
Edit Country Details
+
-
-
-{% endblock %}
\ No newline at end of file
+{% endblock %}
+
\ No newline at end of file
diff --git a/templates/cmp/search-cemeteries.html b/templates/cmp/search-cemeteries.html
index 03b8b7e..01d41a6 100644
--- a/templates/cmp/search-cemeteries.html
+++ b/templates/cmp/search-cemeteries.html
@@ -3,23 +3,35 @@
{% block title %}Cemeteries{% endblock %}
{% block content %}
-
Search Cemeteries
+
+
Search Cemeteries
-
-
-
+
+
+
-
+
+
+
+
+
+ NAME
+ COUNTRY
+
+
+ {% for cemetery in cemeteries %}
+
+ EDIT
+ {{ cemetery.name }}
+ {{ cemetery.country.name }} {{cemetery.country.flag}}
+
+ {% endfor %}
+
-{% endblock %}
\ No newline at end of file
+{% endblock %}
+
\ No newline at end of file
diff --git a/templates/cmp/search-companies.html b/templates/cmp/search-companies.html
index 650d4ba..107b7cc 100644
--- a/templates/cmp/search-companies.html
+++ b/templates/cmp/search-companies.html
@@ -3,7 +3,8 @@
{% block title %}Companies{% endblock %}
{% block content %}
-Search Companies
+
+
Search Companies
-{% for company in page_obj %}
-
- Edit
- {{ company.name}}
-
-{% endfor %}
-
+
+
+
+
+ NAME
+
+
+
+ {% for company in page_obj %}
+
+ EDIT
+ {{ company.name }}
+
+
+ {% endfor %}
+
+
Page {{ page_obj.number }} of {{ page_obj.paginator.num_pages }}
-
{% if page_obj.has_previous %}
Previous
{% endif %}
@@ -32,4 +42,6 @@ Search Companies
Next
{% endif %}
-{% endblock %}
\ No newline at end of file
+{% endblock %}
+
+kk
\ No newline at end of file
diff --git a/templates/cmp/search-countries.html b/templates/cmp/search-countries.html
index c8e94ed..d989235 100644
--- a/templates/cmp/search-countries.html
+++ b/templates/cmp/search-countries.html
@@ -3,7 +3,8 @@
{% block title %}Countries{% endblock %}
{% block content %}
-Search Countries
+
+
Search Countries
+
+
+
+
+
+ NAME
+ FLAG
+
+
{% for country in countries %}
-
- {{ country.name }}
-
+
+ EDIT
+ {{ country.name }}
+ {{ country.flag }}
+
{% endfor %}
+
+
-
-
-{% endblock %}
\ No newline at end of file
+{% endblock %}
+
\ No newline at end of file
diff --git a/templates/cmp/search-decorations.html b/templates/cmp/search-decorations.html
index 47cf8a1..095b543 100644
--- a/templates/cmp/search-decorations.html
+++ b/templates/cmp/search-decorations.html
@@ -3,7 +3,8 @@
{% block title %}Decorations{% endblock %}
{% block content %}
-Search Decorations
+
+
Search Decorations
+
+
+
+
+ NAME
+ COUNTRY
+
+
+
{% for decoration in page_obj %}
-
- Edit
- {{ decoration.name}} {{ decoration.country.name }} {{ decoration.country.flag }}
-
+
+ EDIT
+ {{ decoration.name }}
+ {{ decoration.country.flag }} {{ decoration.country.name }}
+
{% endfor %}
+
Page {{ page_obj.number }} of {{ page_obj.paginator.num_pages }}
@@ -27,6 +39,7 @@
Search Decorations
{% endfor %}
+
{% if page_obj.has_previous %}
Previous
{% endif %}
@@ -34,5 +47,7 @@ Search Decorations
{% if page_obj.has_next %}
Next
{% endif %}
+
-{% endblock %}
\ No newline at end of file
+{% endblock %}
+
\ No newline at end of file
diff --git a/templates/cmp/search-prisoner-of-war-camps.html b/templates/cmp/search-prisoner-of-war-camps.html
index 76e534e..2331e27 100644
--- a/templates/cmp/search-prisoner-of-war-camps.html
+++ b/templates/cmp/search-prisoner-of-war-camps.html
@@ -3,19 +3,34 @@
{% block title %}Countries{% endblock %}
{% block content %}
-Search Prisoner of War Camps
+
+
Search Prisoner of War Camps
+
+
+
+
+
+ NAME
+ COUNTRY
+
+
{% for powcamp in powcamps %}
-
- {{ powcamp.name }}
-
+
+ EDIT
+ {{ powcamp.name }}
+ {{ powcamp.country.flag }} {{ powcamp.country.name }}
+
+
+
{% endfor %}
-{% endblock %}
\ No newline at end of file
+{% endblock %}
+
\ No newline at end of file
diff --git a/templates/cmp/search-ranks.html b/templates/cmp/search-ranks.html
index 980fbfd..ac28b60 100644
--- a/templates/cmp/search-ranks.html
+++ b/templates/cmp/search-ranks.html
@@ -3,7 +3,8 @@
{% block title %}Ranks{% endblock %}
{% block content %}
-Search Ranks
+
+
Search Ranks
-{% for rank in ranks%}
-
- {{ rank.name }}
-
-{% endfor %}
+
+
+
+
+
+ NAME
+
+
+ {% for rank in ranks%}
+
+ EDIT
+ {{ rank.name}}
+
+ {% endfor %}
+
-
-
-{% endblock %}
\ No newline at end of file
+{% endblock %}
+
\ No newline at end of file