summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSashi202019-09-17 10:58:04 +0530
committerSashi202019-09-17 10:58:04 +0530
commitb8ec4fb70254d26a88f3856648399bf68dfb2921 (patch)
tree13cbc683a18034d52cb47d6ab8051d401cecb088
parent2a5e987aea9960d909ddb476ccd5f95da414b501 (diff)
downloadSciPy2019-b8ec4fb70254d26a88f3856648399bf68dfb2921.tar.gz
SciPy2019-b8ec4fb70254d26a88f3856648399bf68dfb2921.tar.bz2
SciPy2019-b8ec4fb70254d26a88f3856648399bf68dfb2921.zip
Modify the text for about us and increase the maximum length for registration description
-rw-r--r--static/website/templates/home.html5
-rw-r--r--website/migrations/0002_auto_20190917_0525.py18
-rw-r--r--website/models.py2
3 files changed, 23 insertions, 2 deletions
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 @@
<h3 class="section-title">About Us</h3>
- <p class="text-justify">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.</p>
+ <p class="text-justify">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.</p>
+ <p class="text-justify">
+
+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.</p>
</div><!-- /.col-sm-6 -->
<div class="col-sm-6">
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)