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

#180 Totals board: comparison with other users, their activity in the last week, etc. #205

Closed
wants to merge 0 commits into from

Conversation

sch0nik
Copy link
Contributor

@sch0nik sch0nik commented Nov 23, 2022

No description provided.

@Malcom1986
Copy link

@sch0nik Пайплайн упал, почините плиз

@acidmaksim
Copy link
Contributor

@sch0nik привет) Напиши, пожалуйста, мне в слаке

@dzencot
Copy link

dzencot commented Jan 9, 2023

Тут идет работа? Не подвис пр?

@sch0nik
Copy link
Contributor Author

sch0nik commented Jan 9, 2023

Медленно, но идёт)

@sch0nik
Copy link
Contributor Author

sch0nik commented Jan 29, 2023

issue #180

@ssssank
Copy link
Contributor

ssssank commented Feb 8, 2023

@sch0nik если у вас что-то получается, то можете куда-нибудь задеплоить и скинуть ссылку. Будет сразу видно, что получается

@sch0nik
Copy link
Contributor Author

sch0nik commented Feb 12, 2023

А можете подсказать куда можно задеплоить? С railway у меня что-то не получается.

@dzencot
Copy link

dzencot commented Feb 20, 2023

Давай я помогу с деплоем. Сегодня гляну

@ashikov
Copy link
Contributor

ashikov commented Feb 28, 2023

@dzencot получилось?

@dzencot
Copy link

dzencot commented Mar 10, 2023

Приложение задеплоилось, но не открывается почему-то. Пока не разбирался, еще посмотрю в выходные

@sch0nik
Copy link
Contributor Author

sch0nik commented Mar 10, 2023

Я запустил приложение, можно посмотреть тут http://91.77.168.64:33333/

@ssssank
Copy link
Contributor

ssssank commented Mar 17, 2023

Правильно ли я понимаю, что добавлена возможность зайти в профиль любого пользователя и нажать кнопку "Compare with yoursefl", после чего строятся два графика: мои и этого пользователя?

{% if user.is_authenticated %}
<a class="btn btn-outline-primary"
href="{% url 'contributors:contributor_details' current_contributor %}?compare=yes">
{% translate "Compare with yourself" %}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Кажется, перевод для этой кнопки не добавлен

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Исправил,спасибо

@luffy987
Copy link

year = 2023 # set the desired year for comparison

retrieve contributions for the current user

context['current_contributor'] = self.object
context['contributions_for_year'] = (
self.object.contribution_set.filter(year=year)
)

check if a comparison with another user is requested

if 'compare' in self.request.GET:
other_user = self.request.GET.get('compare')
try:
other_contributor = Contributor.objects.get(user__username=other_user)
context['other_contributor'] = other_contributor
context['other_contributions_for_year'] = (
other_contributor.contribution_set.filter(year=year)
)
except Contributor.DoesNotExist:
# handle case where the specified user does not exist
pass

@emp7yhead
Copy link
Contributor

@sch0nik давай устраним конфликт и после этого смержим :)

@sch0nik
Copy link
Contributor Author

sch0nik commented Mar 22, 2023

Скоро исправлю

@sch0nik
Copy link
Contributor Author

sch0nik commented Mar 26, 2023

check if a comparison with another user is requested

if 'compare' in self.request.GET:
other_user = self.request.GET.get('compare')
try:
other_contributor = Contributor.objects.get(user__username=other_user)
context['other_contributor'] = other_contributor context['other_contributions_for_year'] = (
other_contributor.contribution_set.filter(year=year) )
except Contributor.DoesNotExist:

handle case where the specified user does not exist

pass

Объясните новичку, пожалуйста. Я запутался и не понимаю в чем смысл замечания. Где ошибки в моем коде.

@emp7yhead
Copy link
Contributor

Объясните новичку, пожалуйста. Я запутался и не понимаю в чем смысл замечания. Где ошибки в моем коде.

Все нормально :) поправь конфликт

@sch0nik
Copy link
Contributor Author

sch0nik commented Mar 26, 2023

Объясните новичку, пожалуйста. Я запутался и не понимаю в чем смысл замечания. Где ошибки в моем коде.

Все нормально :) поправь конфликт

Я закончил курсы , но все равно "моя твоя не понимай". Я вижу кнопку "Resolve conflicts" нажал, но не разобрался в чем суть и что мне делать.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

8 participants