aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Resources/views/themes/material
diff options
context:
space:
mode:
authorThomas Citharel <tcit@tcit.fr>2017-04-27 19:17:19 +0200
committerThomas Citharel <tcit@tcit.fr>2017-06-23 09:27:23 +0200
commit5847dd3572caf06c0e0d5e307241c3b6bc3f8611 (patch)
tree8905d4de388dd18239ea323f4650ff0070064eab /src/Wallabag/CoreBundle/Resources/views/themes/material
parent2585953e0dae631b65c59b0e31196d65bdde84df (diff)
downloadwallabag-5847dd3572caf06c0e0d5e307241c3b6bc3f8611.tar.gz
wallabag-5847dd3572caf06c0e0d5e307241c3b6bc3f8611.tar.zst
wallabag-5847dd3572caf06c0e0d5e307241c3b6bc3f8611.zip
MOAR WIP
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
Diffstat (limited to 'src/Wallabag/CoreBundle/Resources/views/themes/material')
-rw-r--r--src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/_share_groups.html.twig24
-rw-r--r--src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entry.html.twig11
-rw-r--r--src/Wallabag/CoreBundle/Resources/views/themes/material/layout.html.twig6
3 files changed, 38 insertions, 3 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>
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entry.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entry.html.twig
index 4cff7bf2..05f51aa8 100644
--- a/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entry.html.twig
+++ b/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entry.html.twig
@@ -170,6 +170,15 @@
170 </div> 170 </div>
171 </li> 171 </li>
172 172
173 {#{% if craue_setting('groups') %}#}
174 <li class="bold border-bottom hide-on-med-and-down">
175 <a class="waves-effect groups-button" onclick="$('#groups-modal').openModal();" title="{{ 'entry.view.left_menu.group'|trans }}">
176 <i class="material-icons small">group</i>
177 <span>{{ 'entry.view.left_menu.groups'|trans }}</span>
178 </a>
179 </li>
180 {#{% endif %}#}
181
173 {% if craue_setting('show_printlink') %} 182 {% if craue_setting('show_printlink') %}
174 <li class="bold border-bottom hide-on-med-and-down"> 183 <li class="bold border-bottom hide-on-med-and-down">
175 <a class="waves-effect collapsible-header" title="{{ 'entry.view.left_menu.print'|trans }}" href="javascript: window.print();"> 184 <a class="waves-effect collapsible-header" title="{{ 'entry.view.left_menu.print'|trans }}" href="javascript: window.print();">
@@ -287,6 +296,8 @@
287 </div> 296 </div>
288 </div> 297 </div>
289 298
299 {{ render(controller( "WallabagCoreBundle:Entry:GroupShare", { 'entry': entry.id } )) }}
300
290<script id="annotationroutes" type="application/json"> 301<script id="annotationroutes" type="application/json">
291{ 302{
292 "prefix": "", 303 "prefix": "",
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/material/layout.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/material/layout.html.twig
index 575c77f2..92b47dac 100644
--- a/src/Wallabag/CoreBundle/Resources/views/themes/material/layout.html.twig
+++ b/src/Wallabag/CoreBundle/Resources/views/themes/material/layout.html.twig
@@ -75,14 +75,14 @@
75 <li class="bold {% if currentRoute starts with 'user_' %}active{% endif %}"> 75 <li class="bold {% if currentRoute starts with 'user_' %}active{% endif %}">
76 <a class="waves-effect" href="{{ path('user_index') }}">{{ 'menu.left.users_management'|trans }}</a> 76 <a class="waves-effect" href="{{ path('user_index') }}">{{ 'menu.left.users_management'|trans }}</a>
77 </li> 77 </li>
78 <li class="bold {% if currentRoute starts with 'group_' %}active{% endif %}">
79 <a class="waves-effect" href="{{ path('group_index') }}">{{ 'menu.left.groups_management'|trans }}</a>
80 </li>
81 78
82 <li class="bold border-bottom {% if currentRoute == 'craue_config_settings_modify' %}active{% endif %}"> 79 <li class="bold border-bottom {% if currentRoute == 'craue_config_settings_modify' %}active{% endif %}">
83 <a class="waves-effect" href="{{ path('craue_config_settings_modify') }}">{{ 'menu.left.internal_settings'|trans }}</a> 80 <a class="waves-effect" href="{{ path('craue_config_settings_modify') }}">{{ 'menu.left.internal_settings'|trans }}</a>
84 </li> 81 </li>
85 {% endif %} 82 {% endif %}
83 <li class="bold {% if currentRoute starts with 'group_' %}active{% endif %}">
84 <a class="waves-effect" href="{{ path('group_index') }}">{{ 'menu.left.groups_management'|trans }}</a>
85 </li>
86 <li class="bold {% if currentRoute == 'import' %}active{% endif %}"> 86 <li class="bold {% if currentRoute == 'import' %}active{% endif %}">
87 <a class="waves-effect" href="{{ path('import') }}">{{ 'menu.left.import'|trans }}</a> 87 <a class="waves-effect" href="{{ path('import') }}">{{ 'menu.left.import'|trans }}</a>
88 </li> 88 </li>