# coding=utf-8
from django.shortcuts import render


def index(request):
    return render(request, "index.html", {"value": "Привет мир!"})
