Skip to content

Commit

Permalink
Merge pull request #12 from rjw57/add-autonag-app
Browse files Browse the repository at this point in the history
Add autonag application
  • Loading branch information
rjw57 committed Jul 13, 2016
2 parents 8dffda5 + a770ad2 commit 0d52f76
Show file tree
Hide file tree
Showing 8 changed files with 18 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.
1 change: 1 addition & 0 deletions edpcmentoring/edpcmentoring/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@
'projectlight',
'training',

'autonag',
'frontend',
]

Expand Down

0 comments on commit 0d52f76

Please sign in to comment.