예제 #1
0
def setting(request):
    context = kvs()
    # print(context)
    if not session_valid(request):
        return script('location.href="http://" + location.host + "/login"')
    return render(request, "mng/setting.html", context)
예제 #2
0
def download(request):
    docs = all_files()
    context = {'docs': docs}
    if not session_valid(request):
        return script('location.href="http://" + location.host + "/login"')
    return render(request, 'mng/download.html', context)
예제 #3
0
def publish(request):
    context = {}
    if not session_valid(request):
        return script('location.href="http://" + location.host + "/login"')
    return render(request, 'mng/publish.html', context)
예제 #4
0
def key_valid(request):
    if request.POST['key'] == '*****@*****.**':
        request.session['legal'] = True
        return script('location.href="http://" + location.host')
    else:
        return login(request)
예제 #5
0
def need_login(request):
    if not session_valid(request):
        return script('location.href="http://" + location.host + "/login"')
예제 #6
0
def view(request, year, month, day):
    context = query_when(year, month, day)
    if not session_valid(request):
        return script('location.href="http://" + location.host + "/login"')
    return render(request, 'mng/view.html', context)
예제 #7
0
def export_html(request):
    if not session_valid(request):
        return script('location.href="http://" + location.host + "/login"')
    return render(request, 'mng/export.html', {})
예제 #8
0
파일: views.py 프로젝트: ahangchen/material
def publish(request):
    context = {}
    if not session_valid(request):
        return script('location.href="http://" + location.host + "/login"')
    return render(request, 'mng/publish.html', context)
예제 #9
0
파일: views.py 프로젝트: ahangchen/material
def setting(request):
    context = kvs()
    # print(context)
    if not session_valid(request):
        return script('location.href="http://" + location.host + "/login"')
    return render(request, "mng/setting.html", context)
예제 #10
0
파일: views.py 프로젝트: ahangchen/material
def download(request):
    docs = all_files()
    context = {'docs': docs}
    if not session_valid(request):
        return script('location.href="http://" + location.host + "/login"')
    return render(request, 'mng/download.html', context)
예제 #11
0
파일: views.py 프로젝트: ahangchen/material
def need_login(request):
    if not session_valid(request):
        return script('location.href="http://" + location.host + "/login"')
예제 #12
0
파일: views.py 프로젝트: ahangchen/material
def key_valid(request):
    if request.POST['key'] == '*****@*****.**':
        request.session['legal'] = True
        return script('location.href="http://" + location.host')
    else:
        return login(request)
예제 #13
0
파일: views.py 프로젝트: ahangchen/material
def export_html(request):
    if not session_valid(request):
        return script('location.href="http://" + location.host + "/login"')
    return render(request, 'mng/export.html', {})
예제 #14
0
파일: views.py 프로젝트: ahangchen/material
def view(request, year, month, day):
    context = query_when(year, month, day)
    if not session_valid(request):
        return script('location.href="http://" + location.host + "/login"')
    return render(request, 'mng/view.html', context)