diff options
author | jwansek <eddie.atten.ea29@gmail.com> | 2022-02-06 16:55:00 +0000 |
---|---|---|
committer | jwansek <eddie.atten.ea29@gmail.com> | 2022-02-06 16:55:00 +0000 |
commit | e8285e533c8ed7ff3e68f72b0bbac04b478f19c9 (patch) | |
tree | c4ee6e12a1f543ed03e42516d1dc3497c0fc230d /templates/isocd_confirmation.jinja | |
parent | 6f3bca8d3aafe67a5b30a456ab5e80319930e1b6 (diff) | |
download | boymoder.blog-e8285e533c8ed7ff3e68f72b0bbac04b478f19c9.tar.gz boymoder.blog-e8285e533c8ed7ff3e68f72b0bbac04b478f19c9.zip |
added linux ISO CD form
Diffstat (limited to 'templates/isocd_confirmation.jinja')
-rw-r--r-- | templates/isocd_confirmation.jinja | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/templates/isocd_confirmation.jinja b/templates/isocd_confirmation.jinja new file mode 100644 index 0000000..bed09d6 --- /dev/null +++ b/templates/isocd_confirmation.jinja @@ -0,0 +1,16 @@ +{% extends "template.jinja" %} +{% block content %} + <p>Your order has been placed. Expect a confirmation email to {{ email }} when I can be bothered to sort it out.</p> + <br> + <p>Your order/reference id is {{ id_ }}</p> + <br> + <p>The details were as follows:</p> + <table> + {% for k, v in req.items() %} + <tr> + <td>{{ k.upper() }}</td> + <td>{{ v }}</td> + </tr> + {% endfor %} + </table> +{% endblock %}
\ No newline at end of file |