séparation des application pols et vehicles

This commit is contained in:
Ambulance Clerc
2021-12-18 18:56:14 +01:00
parent 46254605fc
commit 769078f261
20 changed files with 115 additions and 22 deletions

0
rh/__init__.py Normal file
View File

3
rh/admin.py Normal file
View File

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

6
rh/apps.py Normal file
View File

@@ -0,0 +1,6 @@
from django.apps import AppConfig
class RhConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'rh'

View File

3
rh/models.py Normal file
View File

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

3
rh/tests.py Normal file
View File

@@ -0,0 +1,3 @@
from django.test import TestCase
# Create your tests here.

3
rh/views.py Normal file
View File

@@ -0,0 +1,3 @@
from django.shortcuts import render
# Create your views here.