Skip to content

Commit

Permalink
bug #1030 Fixed the template of the data collector (javiereguiluz)
Browse files Browse the repository at this point in the history
This PR was merged into the master branch.

Discussion
----------

Fixed the template of the data collector

Commits
-------

98b2c9f Fixed the template of the data collector
  • Loading branch information
javiereguiluz committed Mar 23, 2016
2 parents c5368fd + 98b2c9f commit b7908a6
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions Resources/views/data_collector/easyadmin.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
<div class="tab">
<h3 class="tab-title">Current Entity Configuration</h3>
<div class="tab-content">
{{ collector.dump(collector.currentEntityConfiguration)|raw }}
{{ collector.dump(collector.currentEntityConfig)|raw }}
</div>

<br>
Expand All @@ -87,32 +87,32 @@

<h4>Basic Configuration</h4>
{{ collector.dump({
'site_name': collector.backendConfiguration['site_name'],
'formats': collector.backendConfiguration['formats']
'site_name': collector.backendConfig['site_name'],
'formats': collector.backendConfig['formats']
})|raw }}

<h4>Design Configuration</h4>
{{ collector.dump({
'design': collector.backendConfiguration['design']
'design': collector.backendConfig['design']
})|raw }}

<h4>Actions Configuration</h4>
{{ collector.dump({
'disabled_actions': collector.backendConfiguration['disabled_actions'],
'list': collector.backendConfiguration['list'],
'edit': collector.backendConfiguration['edit'],
'new': collector.backendConfiguration['new'],
'show': collector.backendConfiguration['show'],
'disabled_actions': collector.backendConfig['disabled_actions'],
'list': collector.backendConfig['list'],
'edit': collector.backendConfig['edit'],
'new': collector.backendConfig['new'],
'show': collector.backendConfig['show'],
})|raw }}

<h4>Entities Configuration</h4>
{{ collector.dump({
'entities': collector.backendConfiguration['entities']
'entities': collector.backendConfig['entities']
})|raw }}

<h4>Full Backend Configuration</h4>
{{ collector.dump({
'easy_admin': collector.backendConfiguration
'easy_admin': collector.backendConfig
})|raw }}
</div>
</div>
Expand Down

0 comments on commit b7908a6

Please sign in to comment.