You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							66 lines
						
					
					
						
							2.0 KiB
						
					
					
				
			
		
		
	
	
							66 lines
						
					
					
						
							2.0 KiB
						
					
					
				{% extends app.template_style ~ "/layout/layout_1_col.tpl" %}
 | 
						|
{% block content %}
 | 
						|
<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 %}
 | 
						|
            </div>
 | 
						|
        </div>
 | 
						|
    {% endfor %}
 | 
						|
    </div>
 | 
						|
 | 
						|
    <div class="row">
 | 
						|
        <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>
 | 
						|
    </div>
 | 
						|
</div>
 | 
						|
 | 
						|
 | 
						|
{% endblock %}
 | 
						|
 |