# Django core bits
from django.shortcuts import render
from decorators import admin_only


@admin_only
def admin(request):

    return render(request, 'admin/home.html', {})
