|
525 | 525 | <th class="font-normal" scope="row">Model Format</th>
|
526 | 526 | <td>
|
527 | 527 | {% if data.default_data.model is defined %}
|
528 |
| - {{ profiler_dump(data.default_data.model) }} |
| 528 | + {{ profiler_dump(data.default_data.seek('model')) }} |
529 | 529 | {% else %}
|
530 | 530 | <em class="font-normal text-muted">same as normalized format</em>
|
531 | 531 | {% endif %}
|
532 | 532 | </td>
|
533 | 533 | </tr>
|
534 | 534 | <tr>
|
535 | 535 | <th class="font-normal" scope="row">Normalized Format</th>
|
536 |
| - <td>{{ profiler_dump(data.default_data.norm) }}</td> |
| 536 | + <td>{{ profiler_dump(data.default_data.seek('norm')) }}</td> |
537 | 537 | </tr>
|
538 | 538 | <tr>
|
539 | 539 | <th class="font-normal" scope="row">View Format</th>
|
540 | 540 | <td>
|
541 | 541 | {% if data.default_data.view is defined %}
|
542 |
| - {{ profiler_dump(data.default_data.view) }} |
| 542 | + {{ profiler_dump(data.default_data.seek('view')) }} |
543 | 543 | {% else %}
|
544 | 544 | <em class="font-normal text-muted">same as normalized format</em>
|
545 | 545 | {% endif %}
|
|
571 | 571 | <th class="font-normal" scope="row">View Format</th>
|
572 | 572 | <td>
|
573 | 573 | {% if data.submitted_data.view is defined %}
|
574 |
| - {{ profiler_dump(data.submitted_data.view) }} |
| 574 | + {{ profiler_dump(data.submitted_data.seek('view')) }} |
575 | 575 | {% else %}
|
576 | 576 | <em class="font-normal text-muted">same as normalized format</em>
|
577 | 577 | {% endif %}
|
578 | 578 | </td>
|
579 | 579 | </tr>
|
580 | 580 | <tr>
|
581 | 581 | <th class="font-normal" scope="row">Normalized Format</th>
|
582 |
| - <td>{{ profiler_dump(data.submitted_data.norm) }}</td> |
| 582 | + <td>{{ profiler_dump(data.submitted_data.seek('norm')) }}</td> |
583 | 583 | </tr>
|
584 | 584 | <tr>
|
585 | 585 | <th class="font-normal" scope="row">Model Format</th>
|
586 | 586 | <td>
|
587 | 587 | {% if data.submitted_data.model is defined %}
|
588 |
| - {{ profiler_dump(data.submitted_data.model) }} |
| 588 | + {{ profiler_dump(data.submitted_data.seek('model')) }} |
589 | 589 | {% else %}
|
590 | 590 | <em class="font-normal text-muted">same as normalized format</em>
|
591 | 591 | {% endif %}
|
|
630 | 630 | {% if resolved_option_value == option_value %}
|
631 | 631 | <em class="font-normal text-muted">same as passed value</em>
|
632 | 632 | {% else %}
|
633 |
| - {{ profiler_dump(data.resolved_options[option]) }} |
| 633 | + {{ profiler_dump(data.resolved_options.seek(option)) }} |
634 | 634 | {% endif %}
|
635 | 635 | </td>
|
636 | 636 | </tr>
|
|
0 commit comments