views.py 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. # from django.shortcuts import render
  2. from django.shortcuts import render, get_object_or_404
  3. # from django.http import HttpResponse
  4. # for the form:
  5. from django.http import HttpResponseRedirect
  6. from django.core.mail import send_mail, get_connection
  7. from .forms import ContactForm
  8. from . models import Page
  9. # Create your views here.
  10. def index(request, pagename):
  11. # return HttpResponse("<h1>The Homepage</h1>")
  12. # return render(request, 'pages/page.html') # "base.html" )
  13. pagename = '/' + pagename
  14. # pg = Page.objects.get(permalink=pagename)
  15. pg = get_object_or_404(Page, permalink=pagename)
  16. context = {
  17. 'title': pg.title,
  18. 'content': pg.bodytext,
  19. 'last_updated': pg.update_date,
  20. 'page_list': Page.objects.all(),
  21. }
  22. # assert False # django debug page is cool!
  23. return render(request, 'pages/page.html', context)
  24. def contact(request):
  25. submitted = False
  26. if request.method == 'POST':
  27. form = ContactForm(request.POST)
  28. if form.is_valid():
  29. cd = form.cleaned_data
  30. con = get_connection('django.core.mail.backends.console.EmailBackend')
  31. send_mail(
  32. cd['subject'],
  33. cd['message'],
  34. cd.get('email', '[email protected]'),
  35. ['[email protected]'],
  36. connection=con
  37. )
  38. return HttpResponseRedirect('/contact?submitted=True')
  39. else:
  40. form = ContactForm()
  41. if 'submitted' in request.GET:
  42. submitted = True
  43. return render(request, 'pages/contact.html', {'form': form, 'page_list': Page.objects.all(), 'submitted': submitted})