Hello!
There is:
url.py
urlpatterns = [ path(r'topics/<topic_id>', views.topic, name='topic') ] view.py
def topic(request, topic_id): """ Выводит одну тему и все ее записи """ topic = Topic.objects.get(id=topic_id) entries = topic.entry_set.order_by('-date_added') context = {'topic': topic, 'entries': entries} return render(request=request, template_name='learning_logs/topic.html', context=context) Can't figure out how the path sends topic_id to view.topic ?