Commit
0c2cc832f0f7738cfe4f9fff221bf8e4f50d88d1
create notifications app
| @@ -0,0 +1,3 @@ |
| @@ -0,0 +1,3 @@ |
| |
1
| +from django.contrib import admin |
| |
2
| + |
| |
3
| +# Register your models here. |
| @@ -0,0 +1,5 @@ |
| @@ -0,0 +1,5 @@ |
| |
1
| +from django.apps import AppConfig |
| |
2
| + |
| |
3
| + |
| |
4
| +class NotificationsConfig(AppConfig): |
| |
5
| + name = 'notifications' |
| @@ -0,0 +1,3 @@ |
| @@ -0,0 +1,3 @@ |
| |
1
| +from django.db import models |
| |
2
| + |
| |
3
| +# Create your models here. |
| @@ -0,0 +1,3 @@ |
| @@ -0,0 +1,3 @@ |
| |
1
| +from django.test import TestCase |
| |
2
| + |
| |
3
| +# Create your tests here. |
| @@ -0,0 +1,3 @@ |
| @@ -0,0 +1,3 @@ |
| |
1
| +from django.shortcuts import render |
| |
2
| + |
| |
3
| +# Create your views here. |