Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6744359
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T12:04:27+00:00 2026-05-26T12:04:27+00:00

When I try to put out comment in my html, author’s email instead of

  • 0

When I try to put out comment in my html, author’s email instead of comment is being put out somehow:
asdas(Oct. 22, 2011, 2:38 p.m.)
marijus.merkevicius@gmail.com

Here’s my models :

class Comment(models.Model):
    name = models.CharField(max_length=100)
    email = models.EmailField()
    pub_date = models.DateTimeField(auto_now_add=True)
    comment = models.TextField()
    entry = models.ForeignKey(Entry)

Here’s my view:

def detail(request, blog_slug):
    entry = get_object_or_404(Entry, slug = blog_slug)

    if request.method == "POST":
        form = CommentForm(request.POST)
        if form.is_valid():
            cd = form.cleaned_data
            comment = Comment(name = cd["name"], email = cd["email"],
                              comment = cd["email"],
                              entry = entry)
            comment.save()

            return redirect("blog.views.detail", blog_slug = blog_slug)
    else:
        form = CommentForm()

    comments = Comment.objects.filter(entry = entry)

    return render_to_response("detail.html", {"entry" : entry,
                                              "comments" : comments,
                                              "form" : form},
                              context_instance = RequestContext(request))

And here’s my template:

{% for comment in comments %}
    <p>{{ comment.name }}(<i>{{ comment.pub_date }}</i>)<br/>{{ comment.comment }}</p>
{% endfor %}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T12:04:28+00:00Added an answer on May 26, 2026 at 12:04 pm

    That’s because you store the email address in the comment field:

    comment = cd["email"],
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Try to read xml data into a variable to put it out in an
i try to put a lock to a static string object to access to
When I try to put a value into a DATE field which is invalid,
I’m using C# and WinForms to try and put just the date from a
I am getting raw aac data from web stream and try to put it
I have this code for update: public Boolean update() { try { data.put(ContactsContract.Groups.SHOULD_SYNC, true);
I have a UITableViewCell and it is UITableViewCellStyleDefault . When I try to put
I know it sounds weird but I am required to put a wrapping try
So, I really want to try and put numbers near my ImageButtons (kinda like
I am trying to write out custom HTML in an SSRS report. If I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.