rename .html templates to .jinja2 for more consistency
This commit is contained in:
parent
7f050afb8b
commit
2887d94a8c
36 changed files with 34 additions and 33 deletions
21
templates/circles/csv.jinja2
Normal file
21
templates/circles/csv.jinja2
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{% extends "base.html" %}
|
||||
|
||||
{% block title %}Circles – {{ app_name }}{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
|
||||
<form method="POST" enctype="multipart/form-data">
|
||||
<p>Enter the contacts you want to bulk add, in comma-separated values (CSV) format, one by line.<br />Order matters.</p>
|
||||
<textarea name="text" style="width:100%;height:20em" placeholder="00000,First,Last,Display,Type"></textarea>
|
||||
<input type="checkbox" disabled="" id="autoConsent" name="consent" value="y" />
|
||||
<input type="submit" value="Save" />
|
||||
</form>
|
||||
|
||||
<script>
|
||||
setTimeout(() => {
|
||||
let ac = document.getElementById("autoConsent");
|
||||
ac.disabled = false;
|
||||
ac.selected = false;
|
||||
}, 10000)
|
||||
</script>
|
||||
{% endblock %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue