Browse Source

Commit initial start app tickets

tickets
Grizzly 7 years ago
committed by Gabriel Detraz
parent
commit
fb437dd096
  1. 0
      tickets/__init__.py
  2. 3
      tickets/admin.py
  3. 5
      tickets/apps.py
  4. 0
      tickets/migrations/__init__.py
  5. 3
      tickets/models.py
  6. 3
      tickets/tests.py
  7. 3
      tickets/views.py

0
tickets/__init__.py

3
tickets/admin.py

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

5
tickets/apps.py

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

0
tickets/migrations/__init__.py

3
tickets/models.py

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

3
tickets/tests.py

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

3
tickets/views.py

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