Initial commit

This commit is contained in:
2018-04-16 09:03:51 +01:00
commit 9e4a35ce98
24 changed files with 230 additions and 0 deletions

0
eve_auth/__init__.py Normal file
View File

Binary file not shown.

Binary file not shown.

Binary file not shown.

3
eve_auth/admin.py Normal file
View File

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

5
eve_auth/apps.py Normal file
View File

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

View File

19
eve_auth/models.py Normal file
View File

@@ -0,0 +1,19 @@
from django.contrib.auth.models import User
from django.db import models
from django.db.models.signals import post_save
from django.dispatch import receiver
# Create your models here.
# class Alliance(models.Model):
# id = models.IntegerField(primary_key=True)
# name = models.CharField(max_length=255, blank=True, null=True)
# creator_id = models.IntegerField(blank=True, null=True)
# creator_corporation_id = models.IntegerField(blank=True, null=True)
# ticker = models.CharField(max_length=20, blank=True, null=True)
# date_founded = models.DateTimeField(blank=True, null=True)
# executor_corporation_id = models.IntegerField(blank=True, null=True)
# updated = models.DateTimeField(auto_now=True)
#
# class Corporation(models.Model):
# id = models.IntegerField(primary_key=True)

3
eve_auth/tests.py Normal file
View File

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

0
eve_auth/urls.py Normal file
View File

3
eve_auth/views.py Normal file
View File

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