svg
This commit is contained in:
parent
d0dc35ca61
commit
2477fa187b
|
@ -22,6 +22,11 @@
|
||||||
{% for blog in blogs %}
|
{% for blog in blogs %}
|
||||||
<li id="menublog-{{blog.id}}" data-open="{% if blog.canupdate %}true{%endif%}" class="{% if entity.id is defined and entity.id==blog.id%}active{%endif%}" style="cursor:pointer">
|
<li id="menublog-{{blog.id}}" data-open="{% if blog.canupdate %}true{%endif%}" class="{% if entity.id is defined and entity.id==blog.id%}active{%endif%}" style="cursor:pointer">
|
||||||
<a href="{{ path("cadoles_portal_user_blog_view",{'id':blog.id}) }}">
|
<a href="{{ path("cadoles_portal_user_blog_view",{'id':blog.id}) }}">
|
||||||
|
{% if not blog.groups is empty %}
|
||||||
|
<i class="fa fa-users fa-fw"></i>
|
||||||
|
{% elseif app.user==blog.user %}
|
||||||
|
<i class="fa fa-user fa-fw"></i>
|
||||||
|
{%endif%}
|
||||||
{{ blog.name }}
|
{{ blog.name }}
|
||||||
{% if blog.canadd %}
|
{% if blog.canadd %}
|
||||||
<i class="fa fa-pencil"></i>
|
<i class="fa fa-pencil"></i>
|
||||||
|
|
|
@ -17,6 +17,12 @@
|
||||||
{% for calendar in calendars %}
|
{% for calendar in calendars %}
|
||||||
<li id="menucalendar-{{calendar.id}}" data-open="{% if calendar.canupdate %}true{%endif%}" class="{% if entity.id is defined and entity.id==calendar.id%}active{%endif%}" style="cursor:pointer">
|
<li id="menucalendar-{{calendar.id}}" data-open="{% if calendar.canupdate %}true{%endif%}" class="{% if entity.id is defined and entity.id==calendar.id%}active{%endif%}" style="cursor:pointer">
|
||||||
<a onClick="showCalendar({{ calendar.id }},{{ calendar.canupdate }})">
|
<a onClick="showCalendar({{ calendar.id }},{{ calendar.canupdate }})">
|
||||||
|
{% if not calendar.groups is empty %}
|
||||||
|
<i class="fa fa-users fa-fw"></i>
|
||||||
|
{% elseif app.user==calendar.user %}
|
||||||
|
<i class="fa fa-user fa-fw"></i>
|
||||||
|
{%endif%}
|
||||||
|
|
||||||
{{ calendar.name }}
|
{{ calendar.name }}
|
||||||
{% if not calendar.canupdate %}
|
{% if not calendar.canupdate %}
|
||||||
<i class="fa fa-lock"></i>
|
<i class="fa fa-lock"></i>
|
||||||
|
|
Loading…
Reference in New Issue