diff --git a/compensation/templates/compensation/detail/eco_account/view.html b/compensation/templates/compensation/detail/eco_account/view.html
index 3f9ddb75..cc3137ca 100644
--- a/compensation/templates/compensation/detail/eco_account/view.html
+++ b/compensation/templates/compensation/detail/eco_account/view.html
@@ -52,6 +52,18 @@
{% endif %}
+
+ {% trans 'Conservation office' %} |
+ {{obj.responsible.conservation_office|default_if_none:""}} |
+
+
+ {% trans 'Conversation office file number' %} |
+ {{obj.responsible.conservation_file_number|default_if_none:""}} |
+
+
+ {% trans 'Intervention handler' %} |
+ {{obj.responsible.handler|default_if_none:""}} |
+
{% trans 'Last modified' %} |
diff --git a/ema/templates/ema/detail/view.html b/ema/templates/ema/detail/view.html
index 57a73c8e..f9316720 100644
--- a/ema/templates/ema/detail/view.html
+++ b/ema/templates/ema/detail/view.html
@@ -38,6 +38,18 @@
{% endif %}
|
+
+ {% trans 'Conservation office' %} |
+ {{obj.responsible.conservation_office|default_if_none:""}} |
+
+
+ {% trans 'Conversation office file number' %} |
+ {{obj.responsible.conservation_file_number|default_if_none:""}} |
+
+
+ {% trans 'Intervention handler' %} |
+ {{obj.responsible.handler|default_if_none:""}} |
+
{% trans 'Last modified' %} |
|