-
-
Notifications
You must be signed in to change notification settings - Fork 775
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: show round / claim status on CLR page (#9544)
* add claim date fields * round / claim status on CLR page * add migration * address review comments * remove logs Co-authored-by: Chibuotu Amadi <[email protected]>
- Loading branch information
1 parent
8994c21
commit 22b3c5d
Showing
7 changed files
with
303 additions
and
299 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Generated by Django 2.2.24 on 2021-10-01 09:11 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('grants', '0125_auto_20210928_2029'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='grantclr', | ||
name='claim_end_date', | ||
field=models.DateTimeField(blank=True, help_text='CLR Claim End Date', null=True), | ||
), | ||
migrations.AddField( | ||
model_name='grantclr', | ||
name='claim_start_date', | ||
field=models.DateTimeField(blank=True, help_text='CLR Claim Start Date', null=True), | ||
), | ||
migrations.AlterField( | ||
model_name='contribution', | ||
name='checkout_type', | ||
field=models.CharField(blank=True, choices=[('eth_std', 'eth_std'), ('eth_zksync', 'eth_zksync'), ('eth_polygon', 'eth_polygon'), ('zcash_std', 'zcash_std'), ('celo_std', 'celo_std'), ('zil_std', 'zil_std'), ('polkadot_std', 'polkadot_std'), ('harmony_std', 'harmony_std'), ('binance_std', 'binance_std'), ('rsk_std', 'rsk_std'), ('algorand_std', 'algorand_std')], help_text='The checkout method used while making the contribution', max_length=30, null=True), | ||
), | ||
] |
This file contains 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
Oops, something went wrong.