Solutions for MEIM
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

views.py 165B

123456
  1. from django.http import HttpResponse
  2. # Create your views here.
  3. # if no value is given use the default ''
  4. def home(request, value=''):
  5. return HttpResponse(value)