Last active
December 14, 2017 00:47
-
-
Save guyjacks/ce09a841032971867d775609ba4b517f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Goal(models.Model): | |
def __init__(self): | |
organization | |
recurring_until (datestamp) | |
resets ('monthly', 'yearly') | |
action_type ('fund', 'influence', 'beta') | |
goal (float) | |
def progress(self): | |
pass | |
def contributors(self): | |
pass | |
class DateRange(models.Model): | |
start | |
end | |
goal |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment