Init apps `histories` and `profiles`

This commit is contained in:
Théophile Bastian 2018-01-23 18:12:47 +01:00
parent 397784a673
commit a3e6308837
10 changed files with 22 additions and 0 deletions

0
histories/__init__.py Normal file
View File

3
histories/admin.py Normal file
View File

@ -0,0 +1,3 @@
from django.contrib import admin
# Register your models here.

5
histories/apps.py Normal file
View File

@ -0,0 +1,5 @@
from django.apps import AppConfig
class HistoriesConfig(AppConfig):
name = 'histories'

View File

3
histories/models.py Normal file
View File

@ -0,0 +1,3 @@
from django.db import models
# Create your models here.

0
profiles/__init__.py Normal file
View File

3
profiles/admin.py Normal file
View File

@ -0,0 +1,3 @@
from django.contrib import admin
# Register your models here.

5
profiles/apps.py Normal file
View File

@ -0,0 +1,5 @@
from django.apps import AppConfig
class ProfilesConfig(AppConfig):
name = 'profiles'

View File

3
profiles/models.py Normal file
View File

@ -0,0 +1,3 @@
from django.db import models
# Create your models here.