diff --git a/src/Bundle/ChillActivityBundle/Resources/views/Activity/concernedGroups.html.twig b/src/Bundle/ChillActivityBundle/Resources/views/Activity/concernedGroups.html.twig
index 4985ea1f7..92b1b3ff4 100644
--- a/src/Bundle/ChillActivityBundle/Resources/views/Activity/concernedGroups.html.twig
+++ b/src/Bundle/ChillActivityBundle/Resources/views/Activity/concernedGroups.html.twig
@@ -60,7 +60,7 @@
- {% for r in accompanyingCourse.resources %}
-
- {# TEST
- {{ r.person|chill_entity_render_box({
- 'render': 'label', 'addLink': true, 'addInfo': true, 'hLevel': '1'
- }) }}
-
-
- {{ r.person|chill_entity_render_box({'render': 'raw'}) }}
-
- #}
-
-
- {% if r.person %}
- {{ r.person|chill_entity_render_box({
- 'render': 'bloc', 'addLink': true, 'addEntity': true, 'addInfo': true
- }) }}
- {% endif %}
- {% if r.thirdParty %}
- {{ r.thirdParty|chill_entity_render_box({
- 'render': 'bloc', 'addLink': true, 'addEntity': true, 'addInfo': true
- }) }}
- {% endif %}
+
+
{{ 'Resources'|trans }}
+ {% if accompanyingCourse.resources|length == 0 %}
+
{{ 'Any resource for this accompanying course'|trans }}
+ {% else %}
+
+ {% for r in accompanyingCourse.resources %}
+
+ {% if r.person %}
+ {{ r.person|chill_entity_render_box({
+ 'render': 'bloc', 'addLink': true, 'addEntity': true, 'addInfo': true
+ }) }}
+ {% endif %}
+ {% if r.thirdParty %}
+ {{ r.thirdParty|chill_entity_render_box({
+ 'render': 'bloc', 'addLink': true, 'addEntity': true, 'addInfo': true
+ }) }}
+ {% endif %}
+
+ {% endfor %}
-
- {% endfor %}
-
- {% endif %}
+ {% endif %}
+
{{ 'Social actions'|trans }}
diff --git a/src/Bundle/ChillPersonBundle/Resources/views/Entity/person.html.twig b/src/Bundle/ChillPersonBundle/Resources/views/Entity/person.html.twig
index 3368d91af..9cf37c8ac 100644
--- a/src/Bundle/ChillPersonBundle/Resources/views/Entity/person.html.twig
+++ b/src/Bundle/ChillPersonBundle/Resources/views/Entity/person.html.twig
@@ -8,6 +8,7 @@
* addInfo bool
* hLevel integer
#}
+
{% macro raw(person, options) %}
{{ person.firstName }}
{{ person.lastName }}
@@ -70,42 +71,40 @@
{%- endif -%}
{%- if render == 'bloc' -%}
-
-
-
- {{ _self.label(person, options) }}
-
-
-
- -
- {% if person.mobilenumber %}
- {{ person.mobilenumber }}
+
+
+ {{ _self.label(person, options) }}
+
+
+
+ -
+ {% if person.mobilenumber %}
+ {{ person.mobilenumber }}
+ {% else %}
+
+ {% if person.phonenumber %}
+ {{ person.phonenumber }}
{% else %}
-
- {% if person.phonenumber %}
- {{ person.phonenumber }}
- {% else %}
- {{ 'No data given'|trans }}
- {% endif %}
+ {{ 'No data given'|trans }}
{% endif %}
-
- -
-
- {%- if person.lastAddress is not empty -%}
- {{ person.getLastAddress|chill_entity_render_box({'with_valid_from': false}) }}
- {%- else -%}
- {{ 'No address given'|trans }}
- {%- endif -%}
-
-
- {%- if is_granted('CHILL_PERSON_SEE', person) -%}
-
- {%- endif -%}
-
+ {% endif %}
+
+
-
+
+ {%- if person.lastAddress is not empty -%}
+ {{ person.getLastAddress|chill_entity_render_box({'with_valid_from': false}) }}
+ {%- else -%}
+ {{ 'No address given'|trans }}
+ {%- endif -%}
+
+
+ {%- if is_granted('CHILL_PERSON_SEE', person) -%}
+
+ {%- endif -%}
{%- endif -%}
diff --git a/src/Bundle/ChillThirdPartyBundle/Resources/public/chill/thirdparty.scss b/src/Bundle/ChillThirdPartyBundle/Resources/public/chill/thirdparty.scss
index 454a5b106..67cb9a995 100644
--- a/src/Bundle/ChillThirdPartyBundle/Resources/public/chill/thirdparty.scss
+++ b/src/Bundle/ChillThirdPartyBundle/Resources/public/chill/thirdparty.scss
@@ -1,3 +1,5 @@
+@import '~ChillMainAssets/chill/scss/mixins';
+
section.chill-entity {
&.entity-thirdparty {
div.entity-label {
diff --git a/src/Bundle/ChillThirdPartyBundle/Resources/views/Entity/thirdparty.html.twig b/src/Bundle/ChillThirdPartyBundle/Resources/views/Entity/thirdparty.html.twig
index cdcf53a0b..361ddc96b 100644
--- a/src/Bundle/ChillThirdPartyBundle/Resources/views/Entity/thirdparty.html.twig
+++ b/src/Bundle/ChillThirdPartyBundle/Resources/views/Entity/thirdparty.html.twig
@@ -9,6 +9,7 @@
* addInfo bool
* hLevel integer
#}
+
{% macro raw(thirdparty, options) %}
{{ thirdparty.name }}
{% endmacro raw %}
@@ -100,39 +101,37 @@
{%- endif -%}
{%- if render == 'bloc' -%}
-
-
-
- {{ _self.label(thirdparty, options) }}
-
-
+
+
+ {{ _self.label(thirdparty, options) }}
+
+
{%- endif -%}