# HG changeset patch # User Madhusudan.C.S # Date 1291045551 -19800 # Node ID 861223798fa426b91dce1a9d5411be3ab4865b40 # Parent d552e3a8f7e27793e4f24777e24594aa1db455e9 Add new fields to payment form for accommodation. diff -r d552e3a8f7e2 -r 861223798fa4 project/scipycon/registration/migrations/0001_initial.py --- a/project/scipycon/registration/migrations/0001_initial.py Mon Nov 29 16:16:28 2010 +0530 +++ b/project/scipycon/registration/migrations/0001_initial.py Mon Nov 29 21:15:51 2010 +0530 @@ -14,6 +14,7 @@ ('scope', self.gf('django.db.models.fields.related.ForeignKey')(to=orm['base.Event'])), ('user', self.gf('django.db.models.fields.related.ForeignKey')(to=orm['auth.User'])), ('wifi', self.gf('django.db.models.fields.CharField')(max_length=50)), + ('registration_id', self.gf('django.db.models.fields.CharField')(max_length=255, null=True, blank=True)), )) db.send_create_signal('registration', ['Wifi']) @@ -52,6 +53,17 @@ )) db.send_create_signal('registration', ['Registration']) + # Adding model 'Payment' + db.create_table('registration_payment', ( + ('id', self.gf('django.db.models.fields.AutoField')(primary_key=True)), + ('scope', self.gf('django.db.models.fields.related.ForeignKey')(to=orm['base.Event'])), + ('user', self.gf('django.db.models.fields.related.ForeignKey')(to=orm['auth.User'])), + ('confirmed', self.gf('django.db.models.fields.BooleanField')(default=False)), + ('type', self.gf('django.db.models.fields.CharField')(max_length=25, null=True, blank=True)), + ('details', self.gf('django.db.models.fields.CharField')(max_length=255, null=True, blank=True)), + )) + db.send_create_signal('registration', ['Payment']) + def backwards(self, orm): @@ -64,6 +76,9 @@ # Deleting model 'Registration' db.delete_table('registration_registration') + # Deleting model 'Payment' + db.delete_table('registration_payment') + models = { 'auth.group': { @@ -119,6 +134,15 @@ 'sex': ('django.db.models.fields.CharField', [], {'max_length': '50', 'null': 'True', 'blank': 'True'}), 'user': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['auth.User']"}) }, + 'registration.payment': { + 'Meta': {'object_name': 'Payment'}, + 'confirmed': ('django.db.models.fields.BooleanField', [], {'default': 'False'}), + 'details': ('django.db.models.fields.CharField', [], {'max_length': '255', 'null': 'True', 'blank': 'True'}), + 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), + 'scope': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['base.Event']"}), + 'type': ('django.db.models.fields.CharField', [], {'max_length': '25', 'null': 'True', 'blank': 'True'}), + 'user': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['auth.User']"}) + }, 'registration.registration': { 'Meta': {'object_name': 'Registration'}, 'allow_contact': ('django.db.models.fields.BooleanField', [], {'default': 'False'}), @@ -144,6 +168,7 @@ 'registration.wifi': { 'Meta': {'object_name': 'Wifi'}, 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), + 'registration_id': ('django.db.models.fields.CharField', [], {'max_length': '255', 'null': 'True', 'blank': 'True'}), 'scope': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['base.Event']"}), 'user': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['auth.User']"}), 'wifi': ('django.db.models.fields.CharField', [], {'max_length': '50'}) diff -r d552e3a8f7e2 -r 861223798fa4 project/scipycon/registration/migrations/0002_auto__add_field_wifi_registration_id.py --- a/project/scipycon/registration/migrations/0002_auto__add_field_wifi_registration_id.py Mon Nov 29 16:16:28 2010 +0530 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,107 +0,0 @@ -# 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 field 'Wifi.registration_id' - db.add_column('registration_wifi', 'registration_id', self.gf('django.db.models.fields.CharField')(max_length=255, null=True, blank=True), keep_default=False) - - - def backwards(self, orm): - - # Deleting field 'Wifi.registration_id' - db.delete_column('registration_wifi', 'registration_id') - - - 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'}) - }, - 'base.event': { - 'Meta': {'object_name': 'Event'}, - 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), - 'name': ('django.db.models.fields.CharField', [], {'max_length': '255'}), - 'scope': ('django.db.models.fields.CharField', [], {'max_length': '255'}), - 'status': ('django.db.models.fields.CharField', [], {'max_length': '255'}), - 'turn': ('django.db.models.fields.CharField', [], {'max_length': '255'}) - }, - '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'}) - }, - 'registration.accommodation': { - 'Meta': {'object_name': 'Accommodation'}, - 'accommodation_days': ('django.db.models.fields.IntegerField', [], {'default': '0', 'blank': 'True'}), - 'accommodation_required': ('django.db.models.fields.BooleanField', [], {'default': 'False'}), - 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), - 'scope': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['base.Event']"}), - 'sex': ('django.db.models.fields.CharField', [], {'max_length': '50', 'null': 'True', 'blank': 'True'}), - 'user': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['auth.User']"}) - }, - 'registration.registration': { - 'Meta': {'object_name': 'Registration'}, - 'allow_contact': ('django.db.models.fields.BooleanField', [], {'default': 'False'}), - 'city': ('django.db.models.fields.CharField', [], {'max_length': '255', 'blank': 'True'}), - 'conference': ('django.db.models.fields.BooleanField', [], {'default': 'False'}), - 'final_conference': ('django.db.models.fields.BooleanField', [], {'default': 'False'}), - 'final_sprint': ('django.db.models.fields.BooleanField', [], {'default': 'False'}), - 'final_tutorial': ('django.db.models.fields.BooleanField', [], {'default': 'False'}), - 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), - 'last_mod': ('django.db.models.fields.DateTimeField', [], {'auto_now': 'True', 'blank': 'True'}), - 'occupation': ('django.db.models.fields.CharField', [], {'max_length': '255', 'blank': 'True'}), - 'organisation': ('django.db.models.fields.CharField', [], {'max_length': '255', 'blank': 'True'}), - 'phone_num': ('django.db.models.fields.CharField', [], {'max_length': '14', 'blank': 'True'}), - 'postcode': ('django.db.models.fields.CharField', [], {'max_length': '255', 'blank': 'True'}), - 'registrant': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['auth.User']"}), - 'scope': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['base.Event']"}), - 'slug': ('django.db.models.fields.SlugField', [], {'max_length': '50', 'db_index': 'True'}), - 'sprint': ('django.db.models.fields.BooleanField', [], {'default': 'False'}), - 'submitted': ('django.db.models.fields.DateTimeField', [], {'auto_now_add': 'True', 'blank': 'True'}), - 'tshirt': ('django.db.models.fields.CharField', [], {'max_length': '3'}), - 'tutorial': ('django.db.models.fields.BooleanField', [], {'default': 'False'}) - }, - 'registration.wifi': { - 'Meta': {'object_name': 'Wifi'}, - 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), - 'registration_id': ('django.db.models.fields.CharField', [], {'max_length': '255', 'null': 'True', 'blank': 'True'}), - 'scope': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['base.Event']"}), - 'user': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['auth.User']"}), - 'wifi': ('django.db.models.fields.CharField', [], {'max_length': '50'}) - } - } - - complete_apps = ['registration'] diff -r d552e3a8f7e2 -r 861223798fa4 project/scipycon/registration/models.py --- a/project/scipycon/registration/models.py Mon Nov 29 16:16:28 2010 +0530 +++ b/project/scipycon/registration/models.py Mon Nov 29 21:15:51 2010 +0530 @@ -131,6 +131,9 @@ confirmed = models.BooleanField( default=False, blank=True) + + acco_confirmed = models.BooleanField( + default=False, blank=True) type = models.CharField(max_length=25, choices=PAYMENT_MODE_CHOICES, verbose_name="Type", blank=True, null=True) diff -r d552e3a8f7e2 -r 861223798fa4 project/templates/registration/manage_payments.html --- a/project/templates/registration/manage_payments.html Mon Nov 29 16:16:28 2010 +0530 +++ b/project/templates/registration/manage_payments.html Mon Nov 29 21:15:51 2010 +0530 @@ -12,7 +12,9 @@ - + + + @@ -33,12 +35,28 @@ {{ field.errors }}
+ +
Full NameConfirmedReg. ConfirmedAccommodation. ConfirmedDate of Payment Payment Mode Details
+ {{ field.errors }} +
+
+ {{ field.errors }} +
+
{{ registrant.registrant.payment_set.get.type }} {{ registrant.registrant.payment_set.get.details }}