Skip to content

Commit

Permalink
Fix (#897)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dmi4er4 authored Oct 28, 2024
1 parent 55482cb commit abf4909
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/learning/gradebook/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ def get(self, request, *args, **kwargs):

writer = csv.writer(response)
headers = [
"Профиль на сайте",
"id",
_("Last name"),
_("First name"),
_("Patronymic"),
Expand Down Expand Up @@ -269,7 +269,7 @@ def get(self, request, *args, **kwargs):
gitlab_manytask = connected_providers.get('gitlab-manytask')
writer.writerow(
itertools.chain(
[student.get_absolute_url(),
[gradebook_student.enrollment_id,
student.last_name,
student.first_name,
student.patronymic,
Expand Down

0 comments on commit abf4909

Please sign in to comment.