summaryrefslogtreecommitdiff
path: root/website/views.py
blob: 1d5d17beb72aee215f61b20b215ca5c4dea55c41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
from django.shortcuts import render
from django.utils.encoding import force_text
from django.contrib.contenttypes.models import ContentType
from django.http import HttpResponse, HttpResponseRedirect
from django.shortcuts import render_to_response, redirect
from django.views.decorators.csrf import csrf_exempt
from django.core.context_processors import csrf
from django.contrib.auth import authenticate, login, logout
from django.contrib.admin.models import CHANGE
from django.contrib.auth.decorators import login_required


def home(request):
    return render_to_response('base.html')
    

def contact(request):
    context = {}
    if request.method == "POST":
        sender_name = request.POST['name']
        sender_email = request.POST['email']
        query = request.POST['message']
        to = ('scipy@fossee.in',)
        subject = "Query from - "+sender_name
        message = form['message']
        send_mail(subject, message, sender_email, to, fail_silently=True)
        context['mailsent'] = True
        return render(request, 'base.html', context)