Initial commit
This commit is contained in:
0
eve_auth/__init__.py
Normal file
0
eve_auth/__init__.py
Normal file
BIN
eve_auth/__pycache__/__init__.cpython-36.pyc
Normal file
BIN
eve_auth/__pycache__/__init__.cpython-36.pyc
Normal file
Binary file not shown.
BIN
eve_auth/__pycache__/admin.cpython-36.pyc
Normal file
BIN
eve_auth/__pycache__/admin.cpython-36.pyc
Normal file
Binary file not shown.
BIN
eve_auth/__pycache__/models.cpython-36.pyc
Normal file
BIN
eve_auth/__pycache__/models.cpython-36.pyc
Normal file
Binary file not shown.
3
eve_auth/admin.py
Normal file
3
eve_auth/admin.py
Normal file
@@ -0,0 +1,3 @@
|
||||
from django.contrib import admin
|
||||
|
||||
# Register your models here.
|
||||
5
eve_auth/apps.py
Normal file
5
eve_auth/apps.py
Normal file
@@ -0,0 +1,5 @@
|
||||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class EveAuthConfig(AppConfig):
|
||||
name = 'eve_auth'
|
||||
0
eve_auth/migrations/__init__.py
Normal file
0
eve_auth/migrations/__init__.py
Normal file
BIN
eve_auth/migrations/__pycache__/__init__.cpython-36.pyc
Normal file
BIN
eve_auth/migrations/__pycache__/__init__.cpython-36.pyc
Normal file
Binary file not shown.
19
eve_auth/models.py
Normal file
19
eve_auth/models.py
Normal 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
3
eve_auth/tests.py
Normal file
@@ -0,0 +1,3 @@
|
||||
from django.test import TestCase
|
||||
|
||||
# Create your tests here.
|
||||
0
eve_auth/urls.py
Normal file
0
eve_auth/urls.py
Normal file
3
eve_auth/views.py
Normal file
3
eve_auth/views.py
Normal file
@@ -0,0 +1,3 @@
|
||||
from django.shortcuts import render
|
||||
|
||||
# Create your views here.
|
||||
Reference in New Issue
Block a user