Changeset 1092:f550e0726d86 for plugins
- Timestamp:
- 12/21/12 14:11:30 (13 years ago)
- Branch:
- twig
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/aboutConfig/admtpl/index.html.twig
r1089 r1092 1 1 {% extends "layout.html.twig" %} 2 {% import "js_helpers.html.twig" as js %}3 2 4 3 {% block header %} 5 4 {{ parent() }} 6 {{ js.page_tabs(default_tab) }}5 {{ init_tabs() }} 7 6 <link rel="stylesheet" href="{{plugin_url}}aboutConfig/style/aboutConfig.css" type="text/css" media="screen" /> 8 7 <script type="text/javascript" src="{{plugin_url}}aboutConfig/js/aboutConfig.js"></script> … … 12 11 {{ parent() }} 13 12 14 <div id="local" class="multi-part" title="{{__('blog settings')}}">13 {% tab local('local',__('blog settings')) %} 15 14 {% if local_settings is not empty %} 16 15 {% form local_nav_form %} … … 44 43 <p>{{ form_field('local_submit') }}</p> 45 44 {% endform %} 46 </div> 45 {% endtab %} 47 46 48 <div id="global" class="multi-part" title="{{__('global settings')}}">47 {% tab global('global',__('global settings')) %} 49 48 {% if global_settings is not empty %} 50 49 {% form global_nav_form %} … … 77 76 <p>{{ form_field('global_submit') }}</p> 78 77 {% endform %} 79 </div> 78 {% endtab %} 79 80 80 {% endblock %}
Note: See TracChangeset
for help on using the changeset viewer.