Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified auth/__pycache__/settings.cpython-38.pyc
Binary file not shown.
1 change: 1 addition & 0 deletions auth/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
],

},
},
]
Expand Down
Binary file modified db.sqlite3
Binary file not shown.
Binary file modified home/__pycache__/models.cpython-38.pyc
Binary file not shown.
Binary file modified home/__pycache__/urls.cpython-38.pyc
Binary file not shown.
Binary file modified home/__pycache__/views.cpython-38.pyc
Binary file not shown.
18 changes: 18 additions & 0 deletions home/migrations/0010_studentdata_letter.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 3.1 on 2021-08-10 17:30

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('home', '0009_auto_20210809_2008'),
]

operations = [
migrations.AddField(
model_name='studentdata',
name='letter',
field=models.CharField(blank=True, max_length=20000, null=True),
),
]
Binary file not shown.
2 changes: 1 addition & 1 deletion home/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class StudentData(models.Model):
paper_link = models.CharField(max_length=200,default="null")
subjects= models.CharField(max_length=500, null=True, blank=True)


letter=models.CharField(max_length=20000,null=True,blank=True)

# teacher side
presentation= models.CharField(max_length=15,null=True,blank=True)
Expand Down
4 changes: 4 additions & 0 deletions home/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@
path('changePhone', views.changePhone, name='changePhone'),
path('changeEmail', views.changeEmail, name='changeEmail'),
path('getdetails', views.getdetails, name='getdetails'),
path('edit', views.edit, name='edit'),
path('testing', views.testing, name='testing'),





Expand Down
Loading