Add a prototype email template

If the templates page contains text messages and emails then there’s two ways it
could be structured:
- into two sections, all text messages first, then all emails
- emails and text messages interleaved, sorted by date

I think the second one is better. Imagine a situation where you mostly do emails
but have a few text messages. You’d have to scroll past the text messages to get
to your emails. Every time.

I reckon that the most commonly accessed templates will be the most recent ones.
This commit is contained in:
Chris Hill-Scott
2016-01-13 16:27:54 +00:00
parent c7f635be4a
commit 75c92c12c1
12 changed files with 134 additions and 43 deletions

View File

@@ -22,7 +22,11 @@ from app.main import main
from app.main.forms import CsvUploadForm
from app.main.uploader import s3upload
from ._templates import sms_templates
from ._templates import templates
sms_templates = [
template for template in templates if template['type'] == 'sms'
]
@main.route("/services/<int:service_id>/sms/send", methods=['GET', 'POST'])