Chris Hill-Scott 75c92c12c1 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.
2016-01-14 10:59:51 +00:00
2016-01-14 10:59:51 +00:00
2016-01-12 15:16:16 +00:00
2016-01-05 13:12:35 +00:00
2016-01-11 13:53:55 +00:00
2016-01-12 15:16:16 +00:00
2016-01-05 13:12:35 +00:00
2016-01-12 15:16:16 +00:00
2016-01-13 22:46:25 +00:00

Build Status Requirements Status

notifications-admin

Application to handle the admin functions of the notifications application.

Features of this application:

  • Register users
  • Register services
  • Download CSV for an email or sms batch
  • Show history of notifications
  • Reports

Create a virtual environment for this project

    mkvirtualenv -p /usr/local/bin/python3 notifications-admin

Building the frontend

You need Node which will also get you NPM, Node's package management tool.

    brew install node

n is a tool for managing different versions of node. The following installs n and uses the latest version of node.

npm install -g n
n latest
npm rebuild node-sass

Most of the frontend dependencies are managed using Git Submodules. Some are managed with NPM and Bower. To install or update all the things, run

    git submodule init
    git submodule update
    npm install
    npm run build

If you want the front end assets to re-compile on changes, leave this running in a separate terminal from the app

    npm run watch

Running the application:

    pip install -r requirements.txt
    ./scripts/bootstrap.sh  
    ./scripts/run_app.sh

Note: the ./scripts/bootstrap.sh script only needs to be run the first time to create the database.

URL to test app:

localhost:6012/helloworld

Domain model

All the domain models are defined in the models.py file.

Description
The UI of Notify.gov
Readme 545 MiB
Languages
Python 69.3%
HTML 16.6%
JavaScript 11.1%
SCSS 0.9%
Nunjucks 0.7%
Other 1.4%