This PR logically separates out parts of the code to their own crates. This will be useful for future Tauri App development.
10 lines
297 B
Django/Jinja
10 lines
297 B
Django/Jinja
{%- if let Some(containerfiles) = module.get_containerfile_list() %}
|
|
{%- for c in containerfiles %}
|
|
{{ self::print_containerfile(c) }}
|
|
{%- endfor %}
|
|
{%- endif %}
|
|
{%- if let Some(snippets) = module.get_containerfile_snippets() %}
|
|
{%- for s in snippets %}
|
|
{{ s }}
|
|
{%- endfor %}
|
|
{%- endif %}
|