Sana
Sana

Reputation: 347

how to display a form in function based view

I have got an error when I tried to display a form in function-based view in Django. I could display it in another HTML file and users can make their comments to the blog. But, I think it can be more convenient for users if they can make a comment on the same blog-detail HTML file, so I wanna implement it. When I tried, this error showed up. "NoReverseMatch at /blogs/blog/30/ Reverse for 'blog' with no arguments not found. 1 pattern(s) tried: ['blogs/blog/(?P[0-9]+)/$']"

Any comments can help me and thanks for your time in advance!!

Here are the codes I wrote...

from django import forms
from .models import Comment
class CommentForm(forms.ModelForm):
  class Meta:
    model = Comment
    fields = ('user', 'text',)
#views.py

@login_required
def blog(request, pk):
  blog = get_object_or_404(Blog, pk=pk)
  form = CommentForm()
  # if request.method == 'POST':
  #   form = CommentForm(request.POST)
  #   if form.is_valid():
  #     comment = form.save(commit=False)
  #     comment.blog = blog
  #     comment.save()
  #     return redirect('blog', pk=blog.pk)
  # else:
  #   form = CommentForm()

  if blog.link_1 is not None and blog.link_2 is not None:
    link_1 = blog.link_1
    link_2 = blog.link_2
    context = {
      'blog': blog,
      'link_1': link_1,
      'link_2': link_2,
      'form': form,
    }

  elif blog.link_1 is not None or blog.link_2 is not None:
    link_1 = blog.link_1
    link_2 = blog.link_2
    context = {
      'blog': blog,
      'link_1': link_1,
      'link_2': link_2,
      'form': form,
    }
  else:
    context = {
      'blog': blog,
      'form': form,
    }
  return render(request, 'blog/blog.html', context)


@login_required
def add_comment(request, pk):
  blog = get_object_or_404(Blog, pk=pk)
  if request.method == 'POST':
    form = CommentForm(request.POST)
    if form.is_valid():
      comment = form.save(commit=False)
      comment.blog = blog
      comment.save()
      return redirect('blog', pk=blog.pk)
  else:
    form = CommentForm()
  
  context = {
    'form': form,
  }
  return render(request, 'blog/blog.html', context)
#urls.py
  path('blog/<int:pk>/', views.blog, name='blog'),
  path('blog/<int:pk>/comment/', views.add_comment, name='add_comment'),
#blog.html
{% extends 'base.html' %}
{% block title %}|{{ blog.title }}{% endblock %}
{% block content %}


<div class="header-bar">
  <a href="{% url 'blog' %}">&#8592; 戻る</a>
</div>

<div class="body-container">
  <div class="created-edit-delete">
    <p>
      {% if request.user == blog.user %}
        <a href="{% url 'dashboard' user.id %}">あなた</a>が{{ blog.created }}に作成</p>
      {% else %}
        {{ blog.user }}が{{ blog.created }}に作成</p>
      {% endif %}
    <div class="icons">
      {% if request.user == blog.user %}
        <a href="{% url 'blog-update' blog.id %}" class="far fa-edit"></a>
        <a href="{% url 'blog-delete' blog.id %}" class="far fa-trash-alt"></a>
      {% endif %}
    </div>
  </div>

  <h1>{{ blog.title }}</h1>
  <p class="blog-content">{{ blog.content_1 }}</p>
  {% if blog.content_2 %}
    <p class="blog-content">{{ blog.content_2 }}</p>
  {% endif %}
  {% if blog.content_2 %}
    <p class="blog-content">{{ blog.content_3 }}</p>
  {% endif %}

  <div class="ref-links">
    {% if link_1 %}
      <a href="{{ blog.link_1 }}">参考リンク</a>
    {% endif %}
    {% if link_2 %}
      <a href="{{ blog.link_2 }}">参考リンク</a>
    {% endif %}
  </div>

  <hr>

  <div class="comment-area">
    <div class="comment-form">
      <h2>New comment</h2>
      <form action="{% url 'add_comment' blog.id %}" method="post">
        {% csrf_token %}
        {{ form.as_p }}
        <button type="submit" class="button">追加</button>
      </form>
    </div>

    <div class="comment-all">
      {% for comment in blog.comments.all %}
        <div class="comment">
          <div class="date">{{ comment.created }}</div>
          <strong>{{ comment.user }}</strong>
          <p>{{ comment.text|linebreaks }}</p>
        </div>
      {% empty %}
          <p>No comments here yet :(</p>
      {% endfor %}
    </div>

  </div>

</div>
{% endblock %}

Upvotes: 0

Views: 1064

Answers (1)

Ankit Tiwari
Ankit Tiwari

Reputation: 4710

You have called blog URL here <a href="{% url 'blog' %}">&#8592; 戻る</a> and forgot to pass id inside your URL that's why it's showing this error

NoReverseMatch at /blogs/blog/30/ Reverse for 'blog' with no arguments not found. 1 pattern(s) tried: ['blogs/blog/(?P[0-9]+)/$']

you have to pass id here like this

<a href="{% url 'blog' blog.id %}">&#8592; 戻る</a>

Upvotes: 1

Related Questions