parent
3bdaf6ca23
commit
4c9c89cf0c
@ -1,61 +1,44 @@ |
||||
<script> |
||||
$(function() { |
||||
//$("#settings").tabs(); |
||||
$.ajax({ |
||||
url:'{{ web_admin_ajax_url }}?a=version', |
||||
success:function(version){ |
||||
$(".admin-block-version").html(version); |
||||
} |
||||
}); |
||||
}); |
||||
</script> |
||||
|
||||
<div id="settings"> |
||||
<div class="row"> |
||||
{% for block_item in blocks %} |
||||
<div id="tabs-{{ loop.index }}" class="span6"> |
||||
<div class="well_border {{ block_item.class }}"> |
||||
<h4>{{ block_item.icon }} {{ block_item.label }}</h4> |
||||
<div style="list-style-type:none"> |
||||
{{ block_item.search_form }} |
||||
</div> |
||||
{% if block_item.items is not null %} |
||||
<ul> |
||||
{% for url in block_item.items %} |
||||
<li> |
||||
<a href="{{ url.url }}"> |
||||
{{ url.label }} |
||||
</a> |
||||
</li> |
||||
{% endfor %} |
||||
</ul> |
||||
{% endif %} |
||||
|
||||
{% if block_item.extra is not null %} |
||||
<div> |
||||
{{ block_item.extra }} |
||||
</div> |
||||
{% endif %} |
||||
{% for block_item in blocks %} |
||||
<div id="tabs-{{ loop.index }}" class="span6"> |
||||
<div class="well_border {{ block_item.class }}"> |
||||
<h4>{{ block_item.icon }} {{ block_item.label }}</h4> |
||||
<div style="list-style-type:none"> |
||||
{{ block_item.search_form }} |
||||
</div> |
||||
</div> |
||||
{% endfor %} |
||||
</div> |
||||
|
||||
<div class="row"> |
||||
<div class="span6"> |
||||
<div class="well_border"> |
||||
{% if block_item.items is not null %} |
||||
<ul> |
||||
{% for url in block_item.items %} |
||||
<li> |
||||
<a href="{{ url('question_score.controller:indexAction') }}">{{ 'Question score name' |trans }}</a> |
||||
</li> |
||||
<li> |
||||
<a href="{{ url('question_score_name.controller:indexAction') }}">{{ 'Question names' |trans }}</a> |
||||
</li> |
||||
<li> |
||||
<a href="{{ url('role.controller:indexAction') }}">{{ 'Roles' |trans }}</a> |
||||
<a href="{{ url.url }}"> |
||||
{{ url.label }} |
||||
</a> |
||||
</li> |
||||
{% endfor %} |
||||
</ul> |
||||
</div> |
||||
{% endif %} |
||||
|
||||
{% if block_item.extra is not null %} |
||||
<div> |
||||
{{ block_item.extra }} |
||||
</div> |
||||
{% endif %} |
||||
</div> |
||||
</div> |
||||
{% endfor %} |
||||
|
||||
<div class="span6"> |
||||
<div class="well_border"> |
||||
<ul> |
||||
<li> |
||||
<a href="{{ url('question_score.controller:indexAction') }}">{{ 'Question score name' |trans }}</a> |
||||
</li> |
||||
<li> |
||||
<a href="{{ url('question_score_name.controller:indexAction') }}">{{ 'Question names' |trans }}</a> |
||||
</li> |
||||
<li> |
||||
<a href="{{ url('role.controller:indexAction') }}">{{ 'Roles' |trans }}</a> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
</div> |
||||
|
||||
|
@ -1,6 +1,33 @@ |
||||
{% extends app.template_style ~ "/layout/layout_1_col.tpl" %} |
||||
{% block content %} |
||||
{% for role in app.admin_toolbar_roles %} |
||||
{% include app.template_style ~ "/admin/" ~ role ~ "/role_index.tpl" %} |
||||
{% endfor %} |
||||
<div id="settings"> |
||||
<div class="row"> |
||||
{% for role in app.admin_toolbar_roles %} |
||||
{% include app.template_style ~ "/admin/" ~ role ~ "/role_index.tpl" %} |
||||
{% endfor %} |
||||
</div> |
||||
</div> |
||||
|
||||
{% if is_granted('ROLE_ADMIN')%} |
||||
<script> |
||||
$(function() { |
||||
//$("#settings").tabs(); |
||||
$.ajax({ |
||||
url:'{{ web_admin_ajax_url }}?a=version', |
||||
success:function(version){ |
||||
$(".admin-block-version").html(version); |
||||
} |
||||
}); |
||||
}); |
||||
</script> |
||||
<div class="row"> |
||||
<div class="span12"> |
||||
<div class="well_border"> |
||||
<h3>{{ 'VersionCheck' | trans }} </h3> |
||||
<div class="admin-block-version"></div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
{% endif %} |
||||
|
||||
{% endblock %} |
||||
|
@ -1,21 +1,13 @@ |
||||
<div class="row"> |
||||
<div class="span12"> |
||||
<h3>{{ 'Question manager role' | trans }} </h3> |
||||
</div> |
||||
</div> |
||||
|
||||
<div class="row"> |
||||
<div class="span6"> |
||||
<div class="well_border"> |
||||
<h4>{{ 'Questions' | get_lang }}</h4> |
||||
<ul> |
||||
<li> |
||||
<a href="{{ url('admin_questions') }}"> |
||||
{{ 'Questions' | get_lang }}</a> |
||||
</li> |
||||
<li><a href="{{ url('admin_category_new')}}">{{ 'AddACategory' | get_lang }}</a></li> |
||||
<li><a href="{{ _p.web }}main/exercice/tests_category.php?type=global">{{ 'ManageQuestionCategories' | get_lang }}</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="span6"> |
||||
<div class="well_border"> |
||||
<h4>{{ 'Questions' | get_lang }}</h4> |
||||
<ul> |
||||
<li> |
||||
<a href="{{ url('admin_questions') }}"> |
||||
{{ 'Questions' | get_lang }}</a> |
||||
</li> |
||||
<li><a href="{{ url('admin_category_new')}}">{{ 'AddACategory' | get_lang }}</a></li> |
||||
<li><a href="{{ _p.web }}main/exercice/tests_category.php?type=global">{{ 'ManageQuestionCategories' | get_lang }}</a></li> |
||||
</ul> |
||||
</div> |
||||
</div> |
||||
|
Loading…
Reference in new issue