Skip to content
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

Export MIVS checklist completion as separate rows #3380

Merged
merged 2 commits into from
Nov 28, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions uber/site_sections/mivs_admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,6 @@ def checklist_completion(self, out, session):
header_row.append('Past Due?')
out.writerow(header_row)

rows = []
for studio in session.query(IndieStudio).join(IndieStudio.group).join(Group.guest):
row = [studio.name]
for key, val in c.MIVS_CHECKLIST.items():
Expand All @@ -105,9 +104,7 @@ def checklist_completion(self, out, session):
'No' if localized_now() <= studio.checklist_deadline(key)
else humanize_timedelta(studio.past_checklist_deadline(key), granularity='hours'),
])
rows.extend(row)

out.writerow(rows)
out.writerow(row)

@xlsx_file
def accepted_games_xlsx(self, out, session):
Expand Down