This commit is contained in:
virusdefender
2016-09-25 17:00:52 +08:00
parent 61ab910d53
commit 078de956e5
22 changed files with 297 additions and 9 deletions

0
group/__init__.py Normal file
View File

3
group/admin.py Normal file
View File

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

7
group/apps.py Normal file
View File

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

View File

8
group/models.py Normal file
View File

@@ -0,0 +1,8 @@
# coding=utf-8
from __future__ import unicode_literals
from django.db import models
class Group(models.Model):
pass

3
group/tests.py Normal file
View File

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

3
group/views.py Normal file
View File

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