Début du renouveau

This commit is contained in:
Evarin 2017-04-04 00:31:50 +02:00
parent 7f57400990
commit 2447b0558a
16 changed files with 146 additions and 0 deletions

1
avisstage/.#models.py Symbolic link
View file

@ -0,0 +1 @@
evarin@Igloo.6706:1491250550

0
avisstage/__init__.py Normal file
View file

3
avisstage/admin.py Normal file
View file

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

7
avisstage/apps.py Normal file
View file

@ -0,0 +1,7 @@
from __future__ import unicode_literals
from django.apps import AppConfig
class AvisstageConfig(AppConfig):
name = 'avisstage'

View file

5
avisstage/models.py Normal file
View 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
View file

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

3
avisstage/views.py Normal file
View file

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