countdown: let reminders be recurring

when creating a reminder, describe it as "and every X" and it'll refire
over that period, rather than only firing once

closes bss/dr.botzo#30
This commit is contained in:
2017-02-23 19:10:24 -06:00
parent 76b70ec784
commit bdbba249cd
3 changed files with 36 additions and 1 deletions

View File

@@ -0,0 +1,20 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.10.5 on 2017-02-24 01:06
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('countdown', '0003_auto_20170222_2025'),
]
operations = [
migrations.AddField(
model_name='countdownitem',
name='recurring_period',
field=models.CharField(default='', max_length=64),
),
]