Commit
04e68108664949e36c294adbf51d2ae73e7c790f
Criando a app de web conferencia
| @@ -80,6 +80,7 @@ INSTALLED_APPS = [ |
| @@ -80,6 +80,7 @@ INSTALLED_APPS = [ |
80
| 'themes', |
80
| 'themes', |
81
| 'api', |
81
| 'api', |
82
| 'reports', |
82
| 'reports', |
| |
83
| + 'webconference', |
83
| ] |
84
| ] |
84
| |
85
| |
85
| MIDDLEWARE_CLASSES = [ |
86
| MIDDLEWARE_CLASSES = [ |
| @@ -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 WebconferenceConfig(AppConfig): |
| |
5
| + name = 'webconference' |
| @@ -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. |