Add extra dropdowns for every year in payment history#3840
Open
Add extra dropdowns for every year in payment history#3840
Conversation
725e5fa to
0697211
Compare
DeD1rk
reviewed
Nov 20, 2024
website/payments/views.py
Outdated
| filters = [] | ||
| for i in range(13): | ||
|
|
||
| for i in range(85): |
Member
There was a problem hiding this comment.
85 is kind of a weird number?... Is it based on the legal storage period for payment info? For the user it might be nice if years in which there were no payments (or at least years before their first payment) are not shown.
added 7 commits
December 11, 2024 20:35
… member or 7 years depends on which one is the later date.
… member or 7 years depends on which one is the later date.
4d6139b to
59af06a
Compare
T8902
requested changes
Apr 18, 2025
Comment on lines
116
to
+122
| } | ||
| } | ||
| } | ||
|
|
||
| .wrapped-link { | ||
| word-wrap:break-word; | ||
| } No newline at end of file |
Contributor
There was a problem hiding this comment.
This is not the right pr for these changes
Comment on lines
38
to
44
| {% if partner.link %} | ||
| <h4>{% trans "Website" %}</h4> | ||
| <p> | ||
| <a href="{{ partner.link }}" rel="noopener" target="_blank">{{ partner.link }}</a> | ||
| <a href="{{ partner.link }}" rel="noopener" target="_blank" class="wrapped-link">{{ partner.link }}</a> | ||
| </p> | ||
| {% endif %} | ||
|
|
T8902
reviewed
Aug 13, 2025
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #3839.
Summary
Made it so you can look through your payment history with the GUI.
How to test