submit button redirecting to unknown url

2019-01-20 Thread Mohammad Etemaddar
Change action="." To action="" -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To post to this group, send email to dj

submit button redirecting to unknown url

2019-01-19 Thread tribhuvan kishor
VIEW def post_share(request, post_id): # Retrieve post by id post = get_object_or_404(Post, id=post_id, status='published') sent = False if request.method == 'POST': # Form was submitted form = EmailPostForm(request.POST) if form.is_valid(): # F