furmeet-bot/webproj/bot/views.py

30 lines
861 B
Python

import datetime
import gzip
import json
import mimetypes
import sys
from pathlib import Path
from typing import Any, Dict, List
from uuid import UUID
import pytz
from django.conf import settings
from django.contrib.auth.decorators import login_required
from django.contrib.auth.mixins import LoginRequiredMixin
from django.http import FileResponse, HttpResponse, HttpResponseRedirect
from django.shortcuts import get_object_or_404, redirect, render, resolve_url
from django.urls import reverse
from django.utils.decorators import method_decorator
from django.utils.html import escape
from django.views import View
from django.views.decorators.csrf import csrf_exempt
from django.views.decorators.http import last_modified
from django.views.generic import TemplateView
# Create your views here.
class SoonView(TemplateView):
template_name = "soon.html"