Skip to content

Commit 5cca9f0

Browse files
watchtheblurlpatmo
authored andcommitted
starting osprojects app
1 parent 3ac4b6e commit 5cca9f0

File tree

7 files changed

+17
-0
lines changed

7 files changed

+17
-0
lines changed

project/osprojects/__init__.py

Whitespace-only changes.

project/osprojects/admin.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
from django.contrib import admin
2+
3+
# Register your models here.

project/osprojects/apps.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
from django.apps import AppConfig
2+
3+
4+
class OsprojectsConfig(AppConfig):
5+
name = 'osprojects'

project/osprojects/migrations/__init__.py

Whitespace-only changes.

project/osprojects/models.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
from django.db import models
2+
3+
# Create your models here.

project/osprojects/tests.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
from django.test import TestCase
2+
3+
# Create your tests here.

project/osprojects/views.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
from django.shortcuts import render
2+
3+
# Create your views here.

0 commit comments

Comments
 (0)