diff options
author | Sashi20 | 2019-09-20 10:13:51 +0530 |
---|---|---|
committer | GitHub | 2019-09-20 10:13:51 +0530 |
commit | 607bbc92996e7cba9820718f1176340d04ebb02a (patch) | |
tree | a786d6a2dcb6a96769eb5607efa884f29f06d325 /static/website/templates/home.html | |
parent | 8d2d50c8061f97e52b1d1c72084afb6ffa354211 (diff) | |
parent | 9925fde5d278278312a2be4458dc4cc675a3b88b (diff) | |
download | SciPy2019-607bbc92996e7cba9820718f1176340d04ebb02a.tar.gz SciPy2019-607bbc92996e7cba9820718f1176340d04ebb02a.tar.bz2 SciPy2019-607bbc92996e7cba9820718f1176340d04ebb02a.zip |
Merge pull request #21 from Sashi20/development
Add field to enable/disable registration details model
Diffstat (limited to 'static/website/templates/home.html')
-rw-r--r-- | static/website/templates/home.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/static/website/templates/home.html b/static/website/templates/home.html index 8e4270d..144f57f 100644 --- a/static/website/templates/home.html +++ b/static/website/templates/home.html @@ -125,10 +125,11 @@ It provides a unique opportunity to discuss about the latest trends on Scientifi </td> </tr> {% for registration_detail in registration_details %} + {% if registration_detail.display_registration_type %} <tr> <td style="border-top:none;!important"> <div class="align-baseline"> - {{ registration_detail.registration_type }}<br> + {{ registration_detail.registration_type| safe }}<br> {% if not registration_detail.start_date %} (till {{ registration_detail.end_date| date:"d M Y"}})<br> {% else %} @@ -143,6 +144,7 @@ It provides a unique opportunity to discuss about the latest trends on Scientifi </div> </td> </tr> + {% endif %} {% endfor %} <tr> <td colspan="2"> |