Skip to content

Commit

Permalink
Edited label for approved by machine fund status
Browse files Browse the repository at this point in the history
  • Loading branch information
phillybroadbent committed Feb 28, 2023
1 parent 2e7c462 commit 476bba7
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
23 changes: 23 additions & 0 deletions lowfat/migrations/0158_auto_20230228_1404.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Generated by Django 3.2.15 on 2023-02-28 14:04

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('lowfat', '0157_auto_20230118_1648'),
]

operations = [
migrations.AlterField(
model_name='fund',
name='status',
field=models.CharField(choices=[('U', 'Unprocessed'), ('P', 'Processing'), ('A', 'Approved'), ('M', 'Approved by machine'), ('R', 'Rejected'), ('F', 'Archived'), ('C', 'Cancelled'), ('X', 'Remove')], default='U', max_length=1),
),
migrations.AlterField(
model_name='historicalfund',
name='status',
field=models.CharField(choices=[('U', 'Unprocessed'), ('P', 'Processing'), ('A', 'Approved'), ('M', 'Approved by machine'), ('R', 'Rejected'), ('F', 'Archived'), ('C', 'Cancelled'), ('X', 'Remove')], default='U', max_length=1),
),
]
2 changes: 1 addition & 1 deletion lowfat/models/fund.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
('U', 'Unprocessed'), # Initial status
('P', 'Processing'), # When someone was assigned to review the request
('A', 'Approved'), # Fund was approved. Funds are reserved.
('M', 'Approved'), # Fund was approved by machine. Funds are reserved.
('M', 'Approved by machine'), # Fund was approved by machine. Funds are reserved.
('R', 'Rejected'), # Fund was rejected.
('F', 'Archived'), # Approved funds with all claims and blog posts were processed. No funds are reserved.
('C', 'Cancelled'), # When the fellow decided to cancel their request.
Expand Down

0 comments on commit 476bba7

Please sign in to comment.