|
525 | 525 | <thclass="font-normal"scope="row">Model Format</th> |
526 | 526 | <td> |
527 | 527 | {%ifdata.default_data.modelisdefined %} |
528 | | - {{ profiler_dump(data.default_data.model) }} |
| 528 | + {{ profiler_dump(data.default_data.seek('model')) }} |
529 | 529 | {%else %} |
530 | 530 | <emclass="font-normal text-muted">same as normalized format</em> |
531 | 531 | {%endif %} |
532 | 532 | </td> |
533 | 533 | </tr> |
534 | 534 | <tr> |
535 | 535 | <thclass="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 | <thclass="font-normal"scope="row">View Format</th> |
540 | 540 | <td> |
541 | 541 | {%ifdata.default_data.viewisdefined %} |
542 | | - {{ profiler_dump(data.default_data.view) }} |
| 542 | + {{ profiler_dump(data.default_data.seek('view')) }} |
543 | 543 | {%else %} |
544 | 544 | <emclass="font-normal text-muted">same as normalized format</em> |
545 | 545 | {%endif %} |
|
571 | 571 | <thclass="font-normal"scope="row">View Format</th> |
572 | 572 | <td> |
573 | 573 | {%ifdata.submitted_data.viewisdefined %} |
574 | | - {{ profiler_dump(data.submitted_data.view) }} |
| 574 | + {{ profiler_dump(data.submitted_data.seek('view')) }} |
575 | 575 | {%else %} |
576 | 576 | <emclass="font-normal text-muted">same as normalized format</em> |
577 | 577 | {%endif %} |
578 | 578 | </td> |
579 | 579 | </tr> |
580 | 580 | <tr> |
581 | 581 | <thclass="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 | <thclass="font-normal"scope="row">Model Format</th> |
586 | 586 | <td> |
587 | 587 | {%ifdata.submitted_data.modelisdefined %} |
588 | | - {{ profiler_dump(data.submitted_data.model) }} |
| 588 | + {{ profiler_dump(data.submitted_data.seek('model')) }} |
589 | 589 | {%else %} |
590 | 590 | <emclass="font-normal text-muted">same as normalized format</em> |
591 | 591 | {%endif %} |
|
630 | 630 | {%ifresolved_option_value==option_value %} |
631 | 631 | <emclass="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> |
|