Added Telstra SMS test function to settings page

This commit is contained in:
st01765
2025-09-08 13:54:45 +10:00
parent af2f47b7f9
commit 6442472c0d
5 changed files with 44 additions and 3 deletions
@@ -2,6 +2,7 @@
{% block content %}
<div><a href={% url 'settings:nightly_task' %}>Run nightly task</a></div>
<div><a href={% url 'settings:sms_test' %}>Send SMS test message</a></div>
<div><a href={% url 'settings:export' %}>Export</a></div>
<div>
<div class="flex-container">
@@ -0,0 +1,10 @@
{% extends "admin/base_site.html" %}
{% block content %}
<h1>SMS Test</h1>
<form action="" method="post">
{% csrf_token %}
{{ form.as_p }}
<input type="submit" value="Send" class="default">
</form>
{% endblock %}