Added Telstra SMS test function to settings page
This commit is contained in:
@@ -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 %}
|
||||
Reference in New Issue
Block a user