10 lines
241 B
Python
10 lines
241 B
Python
# -*- encoding: utf-8 -*-
|
|
|
|
from django import template
|
|
from django.contrib.auth.decorators import login_required
|
|
from django.http import HttpResponse, HttpResponseRedirect
|
|
from django.template import loader
|
|
|
|
from django.urls import reverse
|
|
|