Skip to content

Commit

Permalink
autonag: add application via startapp
Browse files Browse the repository at this point in the history
This is a stub application created by the "startapp" management command.

See cuedpc#7
  • Loading branch information
rjw57 committed Jul 12, 2016
1 parent 14ee0fc commit 073e759
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 0 deletions.
Empty file.
3 changes: 3 additions & 0 deletions edpcmentoring/autonag/admin.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from django.contrib import admin

# Register your models here.
5 changes: 5 additions & 0 deletions edpcmentoring/autonag/apps.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
from django.apps import AppConfig


class AutonagConfig(AppConfig):
name = 'autonag'
Empty file.
3 changes: 3 additions & 0 deletions edpcmentoring/autonag/models.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from django.db import models

# Create your models here.
3 changes: 3 additions & 0 deletions edpcmentoring/autonag/tests.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from django.test import TestCase

# Create your tests here.
3 changes: 3 additions & 0 deletions edpcmentoring/autonag/views.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from django.shortcuts import render

# Create your views here.

0 comments on commit 073e759

Please sign in to comment.