def handle(self, *args, **options):
     b = GrantApplication()
     b.grant_cycle = generate_grantcycle()
     b.organization = generate_grantee()
     b.submission_time = datetime.datetime(2003, 8, 4, 12, 30, 45)
     b.address = "8283 37st NW"
     b.city = 'Seattle'
     b.state = 'WA'
     b.zip = 90210
     b.telephone_number = "(201)626-1029"
     b.email_address = "*****@*****.**"
     b.status = 'Tribal government'
     b.ein = 123-4567890
     b.founded = 1996
     b.contact_person = "Ollanius Pius"
     b.amount_requested = 28989928
     b.support_type = 'General support'
     b.project_title = "title1"
     
     b.grant_period = "Fall"
     b.start_year = 1996
     b.budget_last = 10000
     b.budget_current = 100000
     
     b.screening_status = 80
     b.scoring_bonus_poc = True
     b.scoring_bonus_geo = True
     b.save()
 def handle(self, *args, **options):
     b = GrantApplication()
     b.grant_cycle = c
     b.organization = a
     b.submission_time = datetime.date.today()
     b.address = "1234 28th ST"
     b.city = 'Kent'
     b.state = 'ID'
     b.zip = 99040
     b.telephone_number = "(201)623-1019"
     b.email_address = "*****@*****.**"
     b.status = 'Tribal government'
     b.ein = 123-4267190
     b.founded = 1985
     b.contact_person = "Moody"
     b.amount_requested = 1928382
     b.support_type = 'General support'
     b.project_title = "title1"
     b.mission = "Next Generation Giving Project"
     
     b.grant_period = generate_string()
     b.start_year = 1996
     b.budget_last = 10000
     b.budget_current = 100000
     
     b.screening_status = 80
     b.scoring_bonus_poc = False
     b.scoring_bonus_geo = False
     b.save()
Example #3
0
    def handle(self, *args, **options):
        b = GrantApplication()
        b.grant_cycle = generate_grantcycle()
        b.organization = generate_grantee()
        b.submission_time = datetime.datetime(2003, 8, 4, 12, 30, 45)
        b.address = "8283 37st NW"
        b.city = 'Seattle'
        b.state = 'WA'
        b.zip = 90210
        b.telephone_number = "(201)626-1029"
        b.email_address = "*****@*****.**"
        b.status = 'Tribal government'
        b.ein = 123 - 4567890
        b.founded = 1996
        b.contact_person = "Ollanius Pius"
        b.amount_requested = 28989928
        b.support_type = 'General support'
        b.project_title = "title1"

        b.grant_period = "Fall"
        b.start_year = 1996
        b.budget_last = 10000
        b.budget_current = 100000

        b.screening_status = 80
        b.scoring_bonus_poc = True
        b.scoring_bonus_geo = True
        b.save()
    def handle(self, *args, **options):
        b = GrantApplication()
        b.grant_cycle = generate_grantcycle()
        b.organization = generate_grantee()
        b.submission_time = datetime.datetime(2003, 8, 4, 12, 30, 45)
        b.address = "8888 88th PL"
        b.city = 'Cheyenne'
        b.state = 'WY'
        b.zip = 38490
        b.telephone_number = "(222)377-2173"
        b.email_address = "*****@*****.**"
        b.status = 'Sponsored'
        b.ein = 888-4572934
        b.founded = 2005
        b.contact_person = "Bill Gates"
        b.amount_requested = 28989928
        b.support_type = 'General support'
        b.project_title = "A better tomorrow"
        
        b.mission = "LGBTQ Giving Project"

        
        b.grant_period = "Spring"
        b.start_year = 2005
        b.budget_last = 1000000
        b.budget_current = 100000004
        
        b.screening_status = 30
        b.scoring_bonus_poc = False
        b.scoring_bonus_geo = False
        b.save()
    def handle(self, *args, **options):
        b = GrantApplication()
        b.grant_cycle = c
        b.organization = a
        b.submission_time = datetime.date.today()
        b.address = "1234 28th ST"
        b.city = 'Kent'
        b.state = 'ID'
        b.zip = 99040
        b.telephone_number = "(201)623-1019"
        b.email_address = "*****@*****.**"
        b.status = 'Tribal government'
        b.ein = 123 - 4267190
        b.founded = 1985
        b.contact_person = "Moody"
        b.amount_requested = 1928382
        b.support_type = 'General support'
        b.project_title = "title1"
        b.mission = "Next Generation Giving Project"

        b.grant_period = generate_string()
        b.start_year = 1996
        b.budget_last = 10000
        b.budget_current = 100000

        b.screening_status = 80
        b.scoring_bonus_poc = False
        b.scoring_bonus_geo = False
        b.save()
    def handle(self, *args, **options):
        b = GrantApplication()
        b.grant_cycle = generate_grantcycle()
        b.organization = generate_grantee()
        b.submission_time = datetime.datetime(2003, 8, 4, 12, 30, 45)
        b.address = "8888 88th PL"
        b.city = 'Cheyenne'
        b.state = 'WY'
        b.zip = 38490
        b.telephone_number = "(222)377-2173"
        b.email_address = "*****@*****.**"
        b.status = 'Sponsored'
        b.ein = 888 - 4572934
        b.founded = 2005
        b.contact_person = "Bill Gates"
        b.amount_requested = 28989928
        b.support_type = 'General support'
        b.project_title = "A better tomorrow"

        b.mission = "LGBTQ Giving Project"

        b.grant_period = "Spring"
        b.start_year = 2005
        b.budget_last = 1000000
        b.budget_current = 100000004

        b.screening_status = 30
        b.scoring_bonus_poc = False
        b.scoring_bonus_geo = False
        b.save()