Browse Source

[printer] Initial commit.

bring_printer
Maxime Bombar 8 years ago
committed by Gabriel Detraz
parent
commit
d078b7a286
  1. 0
      printer/__init__.py
  2. 3
      printer/admin.py
  3. 5
      printer/apps.py
  4. 0
      printer/migrations/__init__.py
  5. 3
      printer/models.py
  6. 3
      printer/tests.py
  7. 3
      printer/urls.py
  8. 3
      printer/views.py

0
printer/__init__.py

3
printer/admin.py

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

5
printer/apps.py

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

0
printer/migrations/__init__.py

3
printer/models.py

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

3
printer/tests.py

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

3
printer/urls.py

@ -0,0 +1,3 @@
# -*- coding: utf-8 -*-
urlpatterns = []

3
printer/views.py

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