aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/_share_groups.html.twig
diff options
context:
space:
mode:
Diffstat (limited to 'src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/_share_groups.html.twig')
-rw-r--r--src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/_share_groups.html.twig24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/_share_groups.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/_share_groups.html.twig
new file mode 100644
index 00000000..5c81ccc2
--- /dev/null
+++ b/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/_share_groups.html.twig
@@ -0,0 +1,24 @@
1<!-- Groups Modal -->
2<div id="groups-modal" class="modal bottom-sheet">
3 <div class="modal-content">
4 <div class="row">
5 <h4>Groups</h4>
6 <p>Select the groups you want to share this article with</p>
7 <form name="search" method="POST" action="{{ path('group-shares-entry', {'entry': entry.id})}}">
8 {% if form_errors(form) %}
9 <span class="black-text">{{ form_errors(form) }}</span>
10 {% endif %}
11
12 {% if form_errors(form.groupshares) %}
13 <span class="black-text">{{ form_errors(form.groupshares) }}</span>
14 {% endif %}
15
16 {{ form_widget(form.groupshares) }}
17 {{ form_widget(form.save, {'attr': {'class': 'modal-action modal-close waves-effect waves-light btn'}}) }}
18
19 {{ form_rest(form) }}
20 </form>
21
22 </div>
23 </div>
24</div>