Шаблонная переменная Django не отображается - PullRequest
0 голосов
/ 30 ноября 2018

по какой-то причине я не могу отобразить комментарии подкатегории category_request, и теперь у меня есть идея, почему, smb.Может быть, я смогу позаботиться об этом, практически я должен работать, но я не вижу здесь ошибки.насколько я вижу, я использую category_request_comment из представления, чтобы получить освобожденные объекты комментариев из category_request ... любая идея?

Фрагмент шаблона:

{% for category_request_comment in category_request_comments %}
    <div class="comment">
        <p>{{ category_request_comment.content|readmore:15 }}</p>

        {% if category_request_comment.content.published_date %}
            <div class="date">
                <a>Comment by: {{ category_request_comment.author }}</a><br>
                <a>Commented at: {{ category_request_comment.published_date }}</a>
            </div>
        {% endif %}
        {% if request.user == category_request_comment.author %}
            <a class="commentoption" href="{% url 'comment_edit' pk=category_request_comment.pk %}">Edit</a><a> | </a>
            <a class="commentoption" href="{% url 'comment_delete' pk=category_request_comment.pk %}">Delete</a>
        {% endif %}
    </div>
{% endfor %}

views.py

def category_request_detail(request, pk):
    category_request = get_object_or_404(CategoryRequests, pk=pk)
    list_category_request = CategoryRequests.objects.get_queryset().filter(id=pk).order_by('-pk')
    paginator = Paginator(list_category_request, 20)
    page = request.GET.get('page')
    category_request_comment = paginator.get_page(page)
    return render(request, 'myproject/category_request_detail.html', {'category_request': category_request, 'category_request_comment': category_request_comment})

views.py (только для справки)

def category_request_comment_new(request, pk):
    if request.method == "POST":
        form = CategoryRequestsCommentForm(request.POST)
        if form.is_valid():
            category_request = get_object_or_404(CategoryRequests, pk=pk)
            requests_comment = form.save(commit=False)
            requests_comment.author = request.user
            requests_comment.published_date = timezone.now()
            requests_comment.category_request = category_request
            requests_comment.save()
            return redirect('category_request_detail', pk=requests_comment.category_request.pk)
    else:
        form = CategoryRequestsCommentForm()
        return render(request, 'myproject/comment_new.html', {'form': form})

urls.py

url(r'^categories/requests/$', myproject_views.category_request_list, name='category_request_list'),

Заранее спасибо

Ответы [ 2 ]

0 голосов
/ 02 декабря 2018
def category_request_detail(request, pk):
    category_request = get_object_or_404(CategoryRequests, pk=pk)
    list_comments = CategoryRequests_Comment.objects.get_queryset().filter(category_request_id=pk).order_by('-pk')
    paginator = Paginator(list_comments, 10)
    page = request.GET.get('page')
    comments = paginator.get_page(page)

    return render(request, 'myproject/category_request_detail.html', {'category_request': category_request, 'comments': comments})
0 голосов
/ 30 ноября 2018

Ваш шаблон ищет объект с именем category_request_comments, но вы не отправили ничего с таким именем в шаблон.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...