Skip to content

Commit

Permalink
Merge pull request #82 from EarthSchlange/remove_elab_date
Browse files Browse the repository at this point in the history
Remove second renewal date.
  • Loading branch information
Michael Hiiva authored Jun 3, 2020
2 parents f378962 + 4ef3f6b commit 257ffe3
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
4 changes: 0 additions & 4 deletions agagd/agagd_core/tables.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,9 +186,6 @@ class AllPlayerRatingsTable(tables.Table):
players__sigma = tables.Column(
verbose_name="Sigma"
)
players__elab_date = tables.Column(
verbose_name="Renewal Due"
)

def render_chapter_id(self, value):
try:
Expand All @@ -212,7 +209,6 @@ class Meta:
'member_id',
'players__rating',
'players__sigma',
'players__elab_date',
'type',
'chapter_id',
'state',
Expand Down
1 change: 0 additions & 1 deletion agagd/agagd_core/views/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,6 @@ def all_player_ratings(request):
"chapter_id",
"state",
"players__sigma",
"players__elab_date"
).order_by('-players__rating')

all_player_ratings_table = AllPlayerRatingsTable(all_player_ratings_query)
Expand Down

0 comments on commit 257ffe3

Please sign in to comment.