8
0
Fork 0
mirror of https://gitlab2.federez.net/re2o/re2o synced 2024-08-19 21:53:41 +00:00

[printer] Initial commit.

This commit is contained in:
Maxime Bombar 2018-06-28 19:54:47 +02:00
parent 1f3f557944
commit a04a284557
8 changed files with 20 additions and 0 deletions

0
printer/__init__.py Normal file
View file

3
printer/admin.py Normal file
View file

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

5
printer/apps.py Normal file
View file

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

View file

3
printer/models.py Normal file
View file

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

3
printer/tests.py Normal file
View file

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

3
printer/urls.py Normal file
View file

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

3
printer/views.py Normal file
View file

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