From b8ec4fb70254d26a88f3856648399bf68dfb2921 Mon Sep 17 00:00:00 2001 From: Sashi20 Date: Tue, 17 Sep 2019 10:58:04 +0530 Subject: Modify the text for about us and increase the maximum length for registration description --- static/website/templates/home.html | 5 ++++- website/migrations/0002_auto_20190917_0525.py | 18 ++++++++++++++++++ website/models.py | 2 +- 3 files changed, 23 insertions(+), 2 deletions(-) create mode 100644 website/migrations/0002_auto_20190917_0525.py diff --git a/static/website/templates/home.html b/static/website/templates/home.html index 7bec6a5..8e4270d 100644 --- a/static/website/templates/home.html +++ b/static/website/templates/home.html @@ -19,7 +19,10 @@

About Us

-

SciPy India is a conference providing opportunities to spread the use of the Python programming language in the Scientific Computing community in India. It provides a unique opportunity to interact with the "Who's who" of the Python for Scientific Computing fraternity and learn, understand, participate, and contribute to Scientific Computing using Python. One of the goals of the conference is to combine education, engineering, and science with computing through the medium of Python.

+

SciPy India is the annual gathering of Pythonistas providing opportunities to spread the use of the Python programming language in the Scientific Computing community in India.

+

+ +It provides a unique opportunity to discuss about the latest trends on Scientific Computing in the industry. You can present your ideas, research work done in this area during the conference. One of the goals of the conference is to combine education, engineering, and science with computing through the medium of Python.

diff --git a/website/migrations/0002_auto_20190917_0525.py b/website/migrations/0002_auto_20190917_0525.py new file mode 100644 index 0000000..7f89535 --- /dev/null +++ b/website/migrations/0002_auto_20190917_0525.py @@ -0,0 +1,18 @@ +# Generated by Django 2.2.4 on 2019-09-17 05:25 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('website', '0001_initial'), + ] + + operations = [ + migrations.AlterField( + model_name='registrationdetail', + name='registration_description', + field=models.TextField(blank=True, max_length=500, null=True), + ), + ] diff --git a/website/models.py b/website/models.py index f6d2f24..dd6f08d 100644 --- a/website/models.py +++ b/website/models.py @@ -160,4 +160,4 @@ class RegistrationDetail(models.Model): start_date = models.DateTimeField(blank=True, null = True) end_date = models.DateTimeField(blank=True, null=True) registration_ticket = models.CharField(max_length=100, blank=True, null=True) - registration_description = models.CharField(max_length=250, blank= True, null= True) + registration_description = models.TextField(max_length=500, blank= True, null= True) -- cgit