Début du renouveau
This commit is contained in:
parent
7f57400990
commit
2447b0558a
16 changed files with 146 additions and 0 deletions
1
avisstage/.#models.py
Symbolic link
1
avisstage/.#models.py
Symbolic link
|
@ -0,0 +1 @@
|
|||
evarin@Igloo.6706:1491250550
|
0
avisstage/__init__.py
Normal file
0
avisstage/__init__.py
Normal file
3
avisstage/admin.py
Normal file
3
avisstage/admin.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
from django.contrib import admin
|
||||
|
||||
# Register your models here.
|
7
avisstage/apps.py
Normal file
7
avisstage/apps.py
Normal file
|
@ -0,0 +1,7 @@
|
|||
from __future__ import unicode_literals
|
||||
|
||||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class AvisstageConfig(AppConfig):
|
||||
name = 'avisstage'
|
0
avisstage/migrations/__init__.py
Normal file
0
avisstage/migrations/__init__.py
Normal file
5
avisstage/models.py
Normal file
5
avisstage/models.py
Normal file
|
@ -0,0 +1,5 @@
|
|||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import models
|
||||
|
||||
# Create your models here.
|
3
avisstage/tests.py
Normal file
3
avisstage/tests.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
from django.test import TestCase
|
||||
|
||||
# Create your tests here.
|
3
avisstage/views.py
Normal file
3
avisstage/views.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
from django.shortcuts import render
|
||||
|
||||
# Create your views here.
|
Loading…
Add table
Add a link
Reference in a new issue