Browse Source

templates

master
alistair 3 years ago
parent
commit
6c55a84dce
  1. 25
      templates/index.html

25
templates/index.html

@ -0,0 +1,25 @@ @@ -0,0 +1,25 @@
{% block content %}
<h1>Calender Fix Tool</h1>
<form action="" method="post" novalidate>
{{ form.hidden_tag() }}
<p>Paste the UQ timetable iCAL subscription link here.</p> <br>
{{ form.urlfield(size=32) }}
<p>{{ form.submit() }}
{% with messages = get_flashed_messages(with_categories=true) %}
{% if messages %}
<a href={{messages[1][1]}}>{{messages[0][1]}}</a>
{% endif %}
{% endwith %}
</p>
<br> <br>
<p> This tool removes the UID field from UQ iCal timetable subscriptions so </p><br>
<p> multiple peoples timetables can be subscribed to simultaneously, and changes the </p><br>
<p> event names to contain the name of the subject. </p>
</form>
{% endblock %}
Loading…
Cancel
Save