diff options
| author | Markus Zapke-Grùˆndemann <info@keimlink.de> | 2011-12-29 21:33:14 +0100 | 
|---|---|---|
| committer | Markus Zapke-Grùˆndemann <info@keimlink.de> | 2011-12-29 21:33:14 +0100 | 
| commit | 61cbcea237a2c69bbaa3595050536ec10bed2b4d (patch) | |
| tree | e9d82986929d8b8d53e9bce43d4fc08ffb03a3d4 /sublab_project/projects | |
Initial commit.
Diffstat (limited to 'sublab_project/projects')
| -rw-r--r-- | sublab_project/projects/__init__.py | 0 | ||||
| -rw-r--r-- | sublab_project/projects/admin.py | 11 | ||||
| -rw-r--r-- | sublab_project/projects/migrations/0001_initial.py | 85 | ||||
| -rw-r--r-- | sublab_project/projects/migrations/__init__.py | 0 | ||||
| -rw-r--r-- | sublab_project/projects/models.py | 27 | ||||
| -rw-r--r-- | sublab_project/projects/tests.py | 16 | ||||
| -rw-r--r-- | sublab_project/projects/views.py | 1 | 
7 files changed, 140 insertions, 0 deletions
diff --git a/sublab_project/projects/__init__.py b/sublab_project/projects/__init__.py new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/sublab_project/projects/__init__.py diff --git a/sublab_project/projects/admin.py b/sublab_project/projects/admin.py new file mode 100644 index 0000000..74fd29a --- /dev/null +++ b/sublab_project/projects/admin.py @@ -0,0 +1,11 @@ +from django.contrib import admin + +from projects.models import Project + + +class ProjectAdmin(admin.ModelAdmin): +    prepopulated_fields = {'slug': ('name',)} +    list_display = ('name', 'date_created', 'date_updated') + + +admin.site.register(Project, ProjectAdmin) diff --git a/sublab_project/projects/migrations/0001_initial.py b/sublab_project/projects/migrations/0001_initial.py new file mode 100644 index 0000000..749a5f0 --- /dev/null +++ b/sublab_project/projects/migrations/0001_initial.py @@ -0,0 +1,85 @@ +# encoding: utf-8 +import datetime +from south.db import db +from south.v2 import SchemaMigration +from django.db import models + +class Migration(SchemaMigration): + +    def forwards(self, orm): +         +        # Adding model 'Project' +        db.create_table('projects_project', ( +            ('id', self.gf('django.db.models.fields.AutoField')(primary_key=True)), +            ('name', self.gf('django.db.models.fields.CharField')(max_length=100)), +            ('slug', self.gf('django.db.models.fields.SlugField')(unique=True, max_length=50, db_index=True)), +            ('description', self.gf('django.db.models.fields.TextField')()), +            ('description_html', self.gf('django.db.models.fields.TextField')()), +            ('contact_email', self.gf('django.db.models.fields.EmailField')(max_length=75, blank=True)), +            ('contact_url', self.gf('django.db.models.fields.URLField')(max_length=200, blank=True)), +            ('contact_user', self.gf('django.db.models.fields.related.ForeignKey')(to=orm['auth.User'])), +            ('date_created', self.gf('django.db.models.fields.DateTimeField')()), +            ('date_updated', self.gf('django.db.models.fields.DateTimeField')()), +        )) +        db.send_create_signal('projects', ['Project']) + + +    def backwards(self, orm): +         +        # Deleting model 'Project' +        db.delete_table('projects_project') + + +    models = { +        'auth.group': { +            'Meta': {'object_name': 'Group'}, +            'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), +            'name': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '80'}), +            'permissions': ('django.db.models.fields.related.ManyToManyField', [], {'to': "orm['auth.Permission']", 'symmetrical': 'False', 'blank': 'True'}) +        }, +        'auth.permission': { +            'Meta': {'ordering': "('content_type__app_label', 'content_type__model', 'codename')", 'unique_together': "(('content_type', 'codename'),)", 'object_name': 'Permission'}, +            'codename': ('django.db.models.fields.CharField', [], {'max_length': '100'}), +            'content_type': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['contenttypes.ContentType']"}), +            'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), +            'name': ('django.db.models.fields.CharField', [], {'max_length': '50'}) +        }, +        'auth.user': { +            'Meta': {'object_name': 'User'}, +            'date_joined': ('django.db.models.fields.DateTimeField', [], {'default': 'datetime.datetime.now'}), +            'email': ('django.db.models.fields.EmailField', [], {'max_length': '75', 'blank': 'True'}), +            'first_name': ('django.db.models.fields.CharField', [], {'max_length': '30', 'blank': 'True'}), +            'groups': ('django.db.models.fields.related.ManyToManyField', [], {'to': "orm['auth.Group']", 'symmetrical': 'False', 'blank': 'True'}), +            'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), +            'is_active': ('django.db.models.fields.BooleanField', [], {'default': 'True'}), +            'is_staff': ('django.db.models.fields.BooleanField', [], {'default': 'False'}), +            'is_superuser': ('django.db.models.fields.BooleanField', [], {'default': 'False'}), +            'last_login': ('django.db.models.fields.DateTimeField', [], {'default': 'datetime.datetime.now'}), +            'last_name': ('django.db.models.fields.CharField', [], {'max_length': '30', 'blank': 'True'}), +            'password': ('django.db.models.fields.CharField', [], {'max_length': '128'}), +            'user_permissions': ('django.db.models.fields.related.ManyToManyField', [], {'to': "orm['auth.Permission']", 'symmetrical': 'False', 'blank': 'True'}), +            'username': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '30'}) +        }, +        'contenttypes.contenttype': { +            'Meta': {'ordering': "('name',)", 'unique_together': "(('app_label', 'model'),)", 'object_name': 'ContentType', 'db_table': "'django_content_type'"}, +            'app_label': ('django.db.models.fields.CharField', [], {'max_length': '100'}), +            'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), +            'model': ('django.db.models.fields.CharField', [], {'max_length': '100'}), +            'name': ('django.db.models.fields.CharField', [], {'max_length': '100'}) +        }, +        'projects.project': { +            'Meta': {'object_name': 'Project'}, +            'contact_email': ('django.db.models.fields.EmailField', [], {'max_length': '75', 'blank': 'True'}), +            'contact_url': ('django.db.models.fields.URLField', [], {'max_length': '200', 'blank': 'True'}), +            'contact_user': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['auth.User']"}), +            'date_created': ('django.db.models.fields.DateTimeField', [], {}), +            'date_updated': ('django.db.models.fields.DateTimeField', [], {}), +            'description': ('django.db.models.fields.TextField', [], {}), +            'description_html': ('django.db.models.fields.TextField', [], {}), +            'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), +            'name': ('django.db.models.fields.CharField', [], {'max_length': '100'}), +            'slug': ('django.db.models.fields.SlugField', [], {'unique': 'True', 'max_length': '50', 'db_index': 'True'}) +        } +    } + +    complete_apps = ['projects'] diff --git a/sublab_project/projects/migrations/__init__.py b/sublab_project/projects/migrations/__init__.py new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/sublab_project/projects/migrations/__init__.py diff --git a/sublab_project/projects/models.py b/sublab_project/projects/models.py new file mode 100644 index 0000000..f164956 --- /dev/null +++ b/sublab_project/projects/models.py @@ -0,0 +1,27 @@ +import datetime + +from django.contrib.auth.models import User +from django.db import models + + +class Project(models.Model): +    """A project. +    """ +    name = models.CharField(max_length=100) +    slug = models.SlugField(unique=True) +    description = models.TextField() +    description_html = models.TextField(editable=False) +    contact_email = models.EmailField(blank=True) +    contact_url = models.URLField(blank=True) +    contact_user = models.ForeignKey(User) +    date_created = models.DateTimeField(editable=False) +    date_updated = models.DateTimeField(editable=False) + +    def __unicode__(self): +        return self.name + +    def save(self, *args, **kwargs): +        if not self.id: +            self.date_created = datetime.datetime.now() +        self.date_updated = datetime.datetime.now() +        return super(Project, self).save(*args, **kwargs) diff --git a/sublab_project/projects/tests.py b/sublab_project/projects/tests.py new file mode 100644 index 0000000..501deb7 --- /dev/null +++ b/sublab_project/projects/tests.py @@ -0,0 +1,16 @@ +""" +This file demonstrates writing tests using the unittest module. These will pass +when you run "manage.py test". + +Replace this with more appropriate tests for your application. +""" + +from django.test import TestCase + + +class SimpleTest(TestCase): +    def test_basic_addition(self): +        """ +        Tests that 1 + 1 always equals 2. +        """ +        self.assertEqual(1 + 1, 2) diff --git a/sublab_project/projects/views.py b/sublab_project/projects/views.py new file mode 100644 index 0000000..60f00ef --- /dev/null +++ b/sublab_project/projects/views.py @@ -0,0 +1 @@ +# Create your views here.  | 
