mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2025-01-11 10:44:29 +00:00
[printer] Initial commit.
This commit is contained in:
parent
1f3f557944
commit
a04a284557
8 changed files with 20 additions and 0 deletions
0
printer/__init__.py
Normal file
0
printer/__init__.py
Normal file
3
printer/admin.py
Normal file
3
printer/admin.py
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
from django.contrib import admin
|
||||||
|
|
||||||
|
# Register your models here.
|
5
printer/apps.py
Normal file
5
printer/apps.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from django.apps import AppConfig
|
||||||
|
|
||||||
|
|
||||||
|
class PrinterConfig(AppConfig):
|
||||||
|
name = 'printer'
|
0
printer/migrations/__init__.py
Normal file
0
printer/migrations/__init__.py
Normal file
3
printer/models.py
Normal file
3
printer/models.py
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
from django.db import models
|
||||||
|
|
||||||
|
# Create your models here.
|
3
printer/tests.py
Normal file
3
printer/tests.py
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
from django.test import TestCase
|
||||||
|
|
||||||
|
# Create your tests here.
|
3
printer/urls.py
Normal file
3
printer/urls.py
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
urlpatterns = []
|
3
printer/views.py
Normal file
3
printer/views.py
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
from django.shortcuts import render
|
||||||
|
|
||||||
|
# Create your views here.
|
Loading…
Reference in a new issue