Twig Templates & Custom Data
login.html.twig
Main Template
3.79 ms
Total Render Time
766 KB
Memory Usage
6
Templates
6
Blocks
Rendered Templates
| # | Template | Renders | Duration | Memory | Avg/render |
|---|---|---|---|---|---|
| 1 |
security/login.html.twig
main
|
1 | 3.254 ms | 162.71 KB | - |
| 2 |
@WebProfiler/Profiler/toolbar_js.html.twig
|
1 | 0.534 ms | 81.48 KB | - |
| 3 |
base_org.html.twig
|
1 | 3.203 ms | 158.66 KB | - |
| 4 |
@WebProfiler/Profiler/toolbar.html.twig
|
1 | 0.243 ms | 9.34 KB | - |
| 5 |
@WebProfiler/Profiler/toolbar.css.twig
|
1 | 0.008 ms | 16.76 KB | - |
| 6 |
@WebProfiler/Profiler/toolbar_item.html.twig
|
1 | 0.042 ms | 1.77 KB | - |
| Total | 6 | 3.788 ms | 766.05 KB | ||
All template names (6)
security/login.html.twig @WebProfiler/Profiler/toolbar_js.html.twig base_org.html.twig @WebProfiler/Profiler/toolbar.html.twig @WebProfiler/Profiler/toolbar.css.twig @WebProfiler/Profiler/toolbar_item.html.twig
Custom Controller Data
No custom data. Use ToolbarDataBag in your controller to pass data.
Usage example
public function index(ToolbarDataBag $toolbarData): Response
{
$toolbarData->set('message', 'My message');
$toolbarData->set('count', 42);
return $this->render('...');
}