add webterminal

pull/530/head
liuzheng712 8 years ago
parent f45690b34f
commit c50cdd2976

1
.gitignore vendored

@ -14,3 +14,4 @@ migrations/
.idea/
db.sqlite3
config.py
*/migrations/*

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

@ -0,0 +1,7 @@
from __future__ import unicode_literals
from django.apps import AppConfig
class WebterminalConfig(AppConfig):
name = 'webterminal'

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

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

@ -0,0 +1,3 @@
from django.shortcuts import render
# Create your views here.
Loading…
Cancel
Save