Skip to content

Commit

Permalink
Update views.py
Browse files Browse the repository at this point in the history
  • Loading branch information
prStudentka committed Jun 27, 2024
1 parent 3a023e0 commit b2a4932
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions task_manager/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@
class IndexView(View):

def get(self, request, *args, **kwargs):
context = {'label': 'Привет от Хекслета!',
'description': 'Практические курсы по программированию',
context = {'label': 'Привет от выпускника школы Хекслета!',
'description': 'Я Прошла обучение по программе "Python - разработчик". \
За время обучения, оформила четыре учебных проекта в GitHub. \
Мне интересно расти и развиваться. \
Сейчас в поиске работы на должность Python-разработчика. \
Если у Вас есть какие-то предложения о работе, пишите мне. \
Если хотите узнать, что я изучала в Хекслете, то жмите на кнопку.',
'button': 'Узнать больше'}
return render(request, 'index.html', context=context)

0 comments on commit b2a4932

Please sign in to comment.