aif-ng_configgen/app/templates/generator.html

2.3 KiB

{% extends "base.html" %}{% block title %}AIF-NG Configurator | Generator{% endblock %}{% block body %}

Generator

WARNING: Please note that this site may have you submit sensitive information such as passwords, usernames, and the like.
In the interests of full disclosure and respect for privacy, it is important that you know that these are entirely viewable to me, or whomever runs the instance of this website.
It is highly recommended that you generate it with dummy values for those sensitive fields (denoted with *sensitive), and replace those locally in a plaintext editor or XML editor of your choice after downloading the generated configuration file.

{% for message in get_flashed_messages() %}

{{ message }}

{% endfor %}
{% from "_formhelper.html" import render_field %}

Version

This version should match the version of AIF-NG that you are running. It must match a valid git reference (tag, branch, commit, etc.) for the project.

{{ render_field(form.version) }}

(back to top)

Disk

Network

System

Pacman

Bootloader

Scripts

{% if form.errors %}
    {%- for field_name, field_errors in form.errors|dictsort if field_errors %} {%- for error in field_errors %}
  • {{ form[field_name].label }}: {{ error }}
  • {%- endfor %} {%- endfor %}
{% endif %} {% endblock %}