#django
Вопрос:
Я следую точным инструкциям здесь https://github.com/marcopompili/django-instagram но я продолжаю получать ошибку:
django_instagram.templatetags.instagram_client - WARNING - variable name "instagram_profile_name" not found in context! Using a raw string as input is DEPRECATED. Please use a template variable instead!
хотя я добавил к своему urls.py следующее:
path('', TemplateView.as_view(template_name='index.html', extra_context={
"instagram_profile_name": "amd"
})),
Я не могу найти другого ресурса, чтобы узнать, как использовать этот пакет, какая-нибудь помощь?