diff options
author | komalsheth286 | 2016-12-01 11:26:56 +0530 |
---|---|---|
committer | komalsheth286 | 2016-12-01 11:26:56 +0530 |
commit | 7880701ebf0acdf65c44a7d09fc94b11e79295f7 (patch) | |
tree | 4cdc8ff4bf6ebfb8d4eebd82082d9225da0a9f52 | |
parent | 7545783d69c61dd9167f2be730137792603d24cd (diff) | |
download | SciPy2016-7880701ebf0acdf65c44a7d09fc94b11e79295f7.tar.gz SciPy2016-7880701ebf0acdf65c44a7d09fc94b11e79295f7.tar.bz2 SciPy2016-7880701ebf0acdf65c44a7d09fc94b11e79295f7.zip |
Change in workshop Schedule
-rwxr-xr-x | website/templates/base.html | 15 | ||||
-rwxr-xr-x | website/urls.py | 2 |
2 files changed, 10 insertions, 7 deletions
diff --git a/website/templates/base.html b/website/templates/base.html index 65215d1..5785923 100755 --- a/website/templates/base.html +++ b/website/templates/base.html @@ -307,16 +307,17 @@ <td>Tutorials (Parallel tracks) :</td>
</tr>
<tr><td><li style ="font-weight:700">Basic Track</li></br>
- <ul>1 .Introductory Scientific Computing with Python: Ipython, Matplotlib, NumPy, SciPy</ul>
- <ul>2. Introduction to Git</ul>
- <ul>3. Python for Microcontrollers</ul>
+ <ol><li>Introductory Scientific Computing with Python: Ipython, Matplotlib, NumPy, SciPy</li>
+ <li>Introduction to Git</li>
+ <li>Python for Microcontrollers</li></ol>
<ul style ="font-weight:700">Other topics: TBD</ul>
</td></tr>
<tr> <td><li style ="font-weight:700">Advanced Track</li></br>
- <ul>1. Microhope </ul>
- <ul>2. Algorithm to Application: Using Traits and ETS</ul>
- <ul>3. Introduction to Automated Testing in Python</ul>
- <ul>4. Introduction to Git and GitHub</ul>
+
+ <ol><li> Algorithm to Application: Using Traits and ETS</li>
+ <li>Introduction to Automated Testing in Python</li>
+ <li>Introduction to Git and GitHub</li>
+ <li>ExpEYES workshop </li></ol>
<ul style ="font-weight:700">Other topics: TBD</ul>
</td></tr>
diff --git a/website/urls.py b/website/urls.py index 8e5c83e..b89525d 100755 --- a/website/urls.py +++ b/website/urls.py @@ -10,6 +10,8 @@ urlpatterns = patterns('', url(r'^cfp/$', 'website.views.cfp', name='cfp'), # url(r'^submit-cfp/$', 'website.views.submitcfp', name='submitcfp'), # url(r'^submit-cfw/$', 'website.views.submitcfw', name='submitcfw'), + url(r'^submit-cfp/$', 'website.views.home', name='home'), + url(r'^submit-cfw/$', 'website.views.home', name='home'), url(r'^accounts/register/$', 'website.views.userregister', name='userregister'), url(r'^accounts/login/$', 'website.views.cfp', name='cfp'), |