feat(qrgen): add ability to remove spaces from data

This commit is contained in:
2022-02-13 23:09:47 +01:00
parent b513f1ed00
commit 602017b63f
2 changed files with 7 additions and 3 deletions

View File

@@ -11,10 +11,11 @@
<p>
<form action="" method="post">
{{ form.csrf_token }}
<div class="input text">
{{ form.user_data.label }} {{ form.user_data }} </div>
<div class="input text"> {{ form.user_data.label }}</div>
<div> {{ form.user_data }} </div>
<div class="input submit">
{{ form.trim_spaces(checked=True) }} {{ form.trim_spaces.label }}
<input type="submit" value="Generate"</div>
</form>
</p>