emile 1 year ago
parent 5d4726314b
commit cbb8aeaaf1

BIN
.DS_Store vendored

Binary file not shown.

BIN
osinaweb/.DS_Store vendored

Binary file not shown.

Binary file not shown.

@ -9,3 +9,8 @@ class CustomLoginForm(forms.Form):
password = forms.CharField(label='Password', widget=forms.PasswordInput)
class CreateUserForm(UserCreationForm):
class Meta:
model = User
fields = ['first_name', 'last_name','username','email','password1','password2']

@ -0,0 +1,18 @@
# Generated by Django 4.2.5 on 2024-04-18 17:54
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('osinacore', '0066_remove_customerprofile_business_business_customer'),
]
operations = [
migrations.AddField(
model_name='customerprofile',
name='confirmed',
field=models.BooleanField(blank=True, default=True, null=True),
),
]

@ -0,0 +1,22 @@
# Generated by Django 4.2.5 on 2024-04-18 17:57
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('osinacore', '0067_customerprofile_confirmed'),
]
operations = [
migrations.RemoveField(
model_name='customerprofile',
name='confirmed',
),
migrations.AlterField(
model_name='customerprofile',
name='status',
field=models.CharField(blank=True, choices=[('Pending', 'Pending'), ('Active', 'Active'), ('Suspended', 'Suspended'), ('Terminated', 'Terminated')], default='Active', max_length=200),
),
]

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save