First tiny data structure

This commit is contained in:
Christoffer Viken 2015-08-16 14:11:07 +02:00
parent 18716520d5
commit 61e9ff3ace
9 changed files with 109 additions and 2 deletions

View File

@ -1,2 +1,2 @@
Django==1.8.3 Django>=1.8.3
wheel==0.24.0 wheel>=0.24.0

View File

@ -37,6 +37,7 @@ INSTALLED_APPS = (
'django.contrib.sessions', 'django.contrib.sessions',
'django.contrib.messages', 'django.contrib.messages',
'django.contrib.staticfiles', 'django.contrib.staticfiles',
'waffles',
) )
MIDDLEWARE_CLASSES = ( MIDDLEWARE_CLASSES = (
@ -100,3 +101,5 @@ USE_TZ = True
# https://docs.djangoproject.com/en/1.8/howto/static-files/ # https://docs.djangoproject.com/en/1.8/howto/static-files/
STATIC_URL = '/static/' STATIC_URL = '/static/'
AUTH_USER_MODEL = "waffles.UserProfile"

0
waffles/__init__.py Normal file
View File

11
waffles/admin.py Normal file
View File

@ -0,0 +1,11 @@
from django.contrib import admin
from .models import UserProfile, Community, Event
# Register your models here.
@admin.register(UserProfile, Community, Event)
class GenericAdmin(admin.ModelAdmin):
pass

View File

@ -0,0 +1,72 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
import django.core.validators
import django.utils.timezone
import django.contrib.auth.models
from django.conf import settings
class Migration(migrations.Migration):
dependencies = [
('auth', '0006_require_contenttypes_0002'),
]
operations = [
migrations.CreateModel(
name='UserProfile',
fields=[
('id', models.AutoField(verbose_name='ID', primary_key=True, serialize=False, auto_created=True)),
('password', models.CharField(verbose_name='password', max_length=128)),
('last_login', models.DateTimeField(null=True, verbose_name='last login', blank=True)),
('is_superuser', models.BooleanField(verbose_name='superuser status', default=False,
help_text='Designates that this user has all permissions without explicitly assigning them.')),
('username', models.CharField(verbose_name='username', unique=True, validators=[
django.core.validators.RegexValidator('^[\\w.@+-]+$',
'Enter a valid username. This value may contain only letters, numbers and @/./+/-/_ characters.',
'invalid')], max_length=30,
help_text='Required. 30 characters or fewer. Letters, digits and @/./+/-/_ only.',
error_messages={'unique': 'A user with that username already exists.'})),
('first_name', models.CharField(verbose_name='first name', blank=True, max_length=30)),
('last_name', models.CharField(verbose_name='last name', blank=True, max_length=30)),
('email', models.EmailField(verbose_name='email address', blank=True, max_length=254)),
('is_staff', models.BooleanField(verbose_name='staff status', default=False,
help_text='Designates whether the user can log into this admin site.')),
('is_active', models.BooleanField(verbose_name='active', default=True,
help_text='Designates whether this user should be treated as active. Unselect this instead of deleting accounts.')),
('date_joined', models.DateTimeField(verbose_name='date joined', default=django.utils.timezone.now)),
('groups', models.ManyToManyField(verbose_name='groups', to='auth.Group',
help_text='The groups this user belongs to. A user will get all permissions granted to each of their groups.',
related_query_name='user', blank=True, related_name='user_set')),
('user_permissions', models.ManyToManyField(verbose_name='user permissions', to='auth.Permission',
help_text='Specific permissions for this user.',
related_query_name='user', blank=True,
related_name='user_set')),
],
options={
'verbose_name': 'user',
'verbose_name_plural': 'users',
'abstract': False,
},
managers=[
('objects', django.contrib.auth.models.UserManager()),
],
),
migrations.CreateModel(
name='Community',
fields=[
('id', models.AutoField(verbose_name='ID', primary_key=True, serialize=False, auto_created=True)),
('name', models.CharField(max_length=64)),
('members', models.ManyToManyField(to=settings.AUTH_USER_MODEL)),
],
),
migrations.CreateModel(
name='Event',
fields=[
('id', models.AutoField(verbose_name='ID', primary_key=True, serialize=False, auto_created=True)),
('name', models.CharField(max_length=64)),
('description', models.TextField()),
],
),
]

View File

19
waffles/models.py Normal file
View File

@ -0,0 +1,19 @@
from django.contrib.auth.models import AbstractUser
from django.db import models
# Create your models here.
class UserProfile(AbstractUser):
pass
class Community(models.Model):
name = models.CharField(max_length=64)
members = models.ManyToManyField(UserProfile)
class Event(models.Model):
name = models.CharField(max_length=64)
description = models.TextField()

1
waffles/tests.py Normal file
View File

@ -0,0 +1 @@
# Create your tests here.

1
waffles/views.py Normal file
View File

@ -0,0 +1 @@
# Create your views here.