{% extends 'base.html' %} {% block styles %} {{ super() }} {% include 'datatable-styles.html' %} {% endblock styles %} {% block content %} {{ super() }} {% from 'args-table.html' import args_table %} {% from 'caption.html' import caption %} {% from 'content-grid.html' import content_grid %} {% from 'metadata.html' import list_metadata %} {% from 'raster-plot-img.html' import raster_plot_img %} {% from 'wide-table.html' import wide_table %}

Results

{{ accordion_section( 'Aggregate Results', agg_results_table | safe )}} {{ accordion_section( 'Primary Outputs', content_grid([ (caption(raster_group_caption, pre_caption=True), 100), (raster_plot_img(outputs_img_src, 'Primary Outputs'), 100), (caption(outputs_caption, definition_list=True), 100) ]) )}} {% for section in intermediate_raster_sections %} {{ accordion_section( section['heading'], content_grid([ (caption(raster_group_caption, pre_caption=True), 100), (raster_plot_img(section['img_src'], section['heading']), 100), (caption(section['caption'], definition_list=True), 100) ]) )}} {% endfor %} {{ accordion_section( 'Output Raster Stats', content_grid([ (stats_table_note, 100), (wide_table( output_raster_stats_table | safe, font_size_px=16 ), 100) ]) )}}

Inputs

{% if args_dict != None %} {{ accordion_section( 'Arguments', args_table(args_dict) )}} {% endif %} {{ accordion_section( 'LULC Maps', content_grid([ (caption(raster_group_caption, pre_caption=True), 100), (caption(lulc_pre_caption, pre_caption=True), 100), (raster_plot_img(inputs_img_src, 'Raster Inputs'), 100), (caption(inputs_caption, definition_list=True), 100) ]) )}} {{ accordion_section( 'Input Raster Stats', content_grid([ (stats_table_note, 100), (wide_table( input_raster_stats_table | safe, font_size_px=16 ), 100) ]) )}}

Metadata

{{ accordion_section( 'Output Filenames and Descriptions', list_metadata(model_spec_outputs), expanded=False ) }} {% endblock content %} {% block scripts %} {{ super() }} {% include 'datatable-js.html' %} {% endblock scripts %}