chess template

master
Tait Hoyem 4 years ago
parent 1a2eb0c567
commit 55018ace3c

@ -0,0 +1,3 @@
from django.contrib import admin
# Register your models here.

@ -0,0 +1,5 @@
from django.apps import AppConfig
class ChessConfig(AppConfig):
name = 'chess'

@ -0,0 +1,3 @@
from django.db import models
# Create your models here.

@ -0,0 +1 @@
{% extends 'common/master.html' %}

@ -0,0 +1,3 @@
from django.test import TestCase
# Create your tests here.

@ -0,0 +1,6 @@
from django.urls import path
from . import views
urlpatterns = [
path('', views.index, name='chess')
]

@ -0,0 +1,5 @@
from django.shortcuts import render
# Create your views here.
def index(request):
return render(request, 'chess/board.html', {})
Loading…
Cancel
Save