-
-
Notifications
You must be signed in to change notification settings - Fork 775
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
grants/profile : add txn history template #2465
Conversation
- set up route + view + empty template - css clean up + indent fix - renamed grants/grant_card -> grants/card - split up card css to it's own file
- UI template with be hardcoded - minimal refactoring
app/grants/views.py
Outdated
history = [ | ||
{ | ||
'date': '16 Mar', | ||
'value_true' : 1.0, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
E203 whitespace before ':'
app/grants/views.py
Outdated
{ | ||
'date': '16 Mar', | ||
'value_true' : 1.0, | ||
'token_name' : 'ETH', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
E203 whitespace before ':'
app/grants/views.py
Outdated
'date': '16 Mar', | ||
'value_true' : 1.0, | ||
'token_name' : 'ETH', | ||
'frequency' : 'days', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
E203 whitespace before ':'
app/grants/views.py
Outdated
'value_true' : 1.0, | ||
'token_name' : 'ETH', | ||
'frequency' : 'days', | ||
'value_in_usdt_now' : 80, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
E203 whitespace before ':'
app/grants/views.py
Outdated
}, | ||
{ | ||
'date': '24 April', | ||
'value_true' : 90, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
E203 whitespace before ':'
app/grants/views.py
Outdated
{ | ||
'date': '24 April', | ||
'value_true' : 90, | ||
'token_name' : 'DAI', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
E203 whitespace before ':'
app/grants/views.py
Outdated
'date': '24 April', | ||
'value_true' : 90, | ||
'token_name' : 'DAI', | ||
'frequency' : 'months', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
E203 whitespace before ':'
app/grants/views.py
Outdated
'value_true' : 90, | ||
'token_name' : 'DAI', | ||
'frequency' : 'months', | ||
'value_in_usdt_now' : 90, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
E203 whitespace before ':'
Codecov Report
@@ Coverage Diff @@
## grants #2465 +/- ##
==========================================
+ Coverage 29.62% 29.65% +0.03%
==========================================
Files 154 154
Lines 12115 12021 -94
Branches 1649 1607 -42
==========================================
- Hits 3589 3565 -24
+ Misses 8400 8338 -62
+ Partials 126 118 -8
Continue to review full report at Codecov.
|
Description
grants/profile: added txn history section …
Refers/Fixes
#2019