|
@@ -4,24 +4,24 @@
|
4
|
4
|
|
5
|
5
|
{% block content %}
|
6
|
6
|
|
7
|
|
- <span class="follow_link following">
|
8
|
|
-
|
|
7
|
+ <div class="show_options">
|
|
8
|
+
|
9
|
9
|
{% if his_group %}
|
10
|
10
|
<a href="{{ path('group_edit', { 'slug': group.slug }) }}" >
|
11
|
11
|
{{ 'group.edit'|trans({}, 'groups') }}
|
12
|
12
|
</a> |
|
13
|
13
|
{% endif %}
|
14
|
|
-
|
|
14
|
+
|
15
|
15
|
<a href="{{ path('follow', { 'type': 'group', 'id': group.id, 'token': user.personalHash }) }}"
|
16
|
|
- class="{% if following %}following{% else %}notfollowing{% endif %}">
|
|
16
|
+ class="follow_link button {% if following %}following{% else %}notfollowing{% endif %}">
|
17
|
17
|
{% if following %}
|
18
|
|
- {{ 'group.notfollow'|trans({}, 'groups') }}
|
|
18
|
+ {{ 'group.following'|trans({}, 'groups') }}
|
19
|
19
|
{% else %}
|
20
|
20
|
{{ 'group.follow'|trans({}, 'groups') }}
|
21
|
21
|
{% endif %}
|
22
|
22
|
</a>
|
23
|
23
|
|
24
|
|
- </span>
|
|
24
|
+ </div>
|
25
|
25
|
|
26
|
26
|
<h2>{{ group.name }}</h2>
|
27
|
27
|
|