This repository was archived by the owner on Aug 17, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +19
-6
lines changed Expand file tree Collapse file tree 4 files changed +19
-6
lines changed Original file line number Diff line number Diff line change @@ -28,8 +28,8 @@ class ConfigController extends AbstractController
28
28
{
29
29
/**
30
30
* @Route("/settings/{method}")
31
+ * @Template("@ZikulaOAuthModule/Config/settings.html.twig")
31
32
* @Theme("admin")
32
- * @Template("ZikulaOAuthModule:Config:settings.html.twig")
33
33
*
34
34
* @throws AccessDeniedException
35
35
*/
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ class MappingController extends AbstractController
27
27
{
28
28
/**
29
29
* @Route("/list")
30
- * @Template("ZikulaOAuthModule: Mapping: list.html.twig")
30
+ * @Template("@ ZikulaOAuthModule/ Mapping/ list.html.twig")
31
31
* @Theme("admin")
32
32
*
33
33
* @throws AccessDeniedException
Original file line number Diff line number Diff line change 1
1
{% form_theme form with [
2
- ' ZikulaFormExtensionBundle: Form: bootstrap_3_zikula_admin_layout.html.twig' ,
3
- ' ZikulaFormExtensionBundle: Form: form_div_layout.html.twig'
2
+ ' @ZikulaFormExtension/ Form/ bootstrap_3_zikula_admin_layout.html.twig' ,
3
+ ' @ZikulaFormExtension/ Form/ form_div_layout.html.twig'
4
4
] %}
5
5
{{ polyfill() }}
6
6
{{ adminHeader() }}
Original file line number Diff line number Diff line change 3
3
<h2 ><i class =" fa fa-list" ></i >{{ __(' Mappings list' ) }}</h2 >
4
4
5
5
<table class =" table table-bordered table-striped" >
6
+ <colgroup >
7
+ <col id =" cMethod" />
8
+ <col id =" cMethodId" />
9
+ <col id =" cZikulaId" />
10
+ </colgroup >
6
11
<thead >
7
- <tr ><th >{{ __(' Method' ) }}</th ><th >{{ __(' MethodId' ) }}</th ><th >{{ __(' ZikulaId' ) }}</th ></tr >
12
+ <tr >
13
+ <th id =" hMethod" scope =" col" >{{ __(' Method' ) }}</th >
14
+ <th id =" hMethodId" scope =" col" >{{ __(' MethodId' ) }}</th >
15
+ <th id =" hZikulaId" scope =" col" >{{ __(' ZikulaId' ) }}</th >
16
+ </tr >
8
17
</thead >
9
18
<tbody >
10
19
{% for mapping in mappings %}
11
- <tr ><td >{{ mapping .method }}</td ><td >{{ mapping .methodId }}</td ><td >{{ mapping .zikulaId }}</td ></tr >
20
+ <tr >
21
+ <td headers =" hMethod" >{{ mapping .method }}</td >
22
+ <td headers =" hMethodId" >{{ mapping .methodId }}</td >
23
+ <td headers =" hZikulaId" >{{ mapping .zikulaId }}</td >
24
+ </tr >
12
25
{% endfor %}
13
26
</tbody >
14
27
</table >
You can’t perform that action at this time.
0 commit comments