diff options
author | Sashi20 | 2019-09-20 10:12:33 +0530 |
---|---|---|
committer | Sashi20 | 2019-09-20 10:12:33 +0530 |
commit | 9925fde5d278278312a2be4458dc4cc675a3b88b (patch) | |
tree | a786d6a2dcb6a96769eb5607efa884f29f06d325 /static/website/templates | |
parent | f193ddc4fae94202e1e37709fe964ecfb2bfcbe3 (diff) | |
download | SciPy2019-9925fde5d278278312a2be4458dc4cc675a3b88b.tar.gz SciPy2019-9925fde5d278278312a2be4458dc4cc675a3b88b.tar.bz2 SciPy2019-9925fde5d278278312a2be4458dc4cc675a3b88b.zip |
Add field to enable/disable registration details model
Diffstat (limited to 'static/website/templates')
-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"> |