diff options
-rwxr-xr-x | website/templates/abstract-details.html | 6 | ||||
-rwxr-xr-x | website/templates/cfp.html | 3 | ||||
-rwxr-xr-x | website/urls.py | 4 |
3 files changed, 9 insertions, 4 deletions
diff --git a/website/templates/abstract-details.html b/website/templates/abstract-details.html index 9b86593..5a91cff 100755 --- a/website/templates/abstract-details.html +++ b/website/templates/abstract-details.html @@ -53,6 +53,12 @@ {% if proposal.prerequisite %} <p><b>Prerequisite: </b> {{ proposal.prerequisite |linebreaks }}</p> {% endif%} + <p><b>Duration: </b> {{ proposal.duration }} {% if proposal.proposal_type == "ABSTRACT"%} Mins {% else %}Hours {%endif%}</p> + {% if proposal.proposal_type == "ABSTRACT"%} + <p><b>Tags: </b> {{ proposal.tags }}</p> + {% else %} + <p><b>Level: </b> {{ proposal.tags }}</p> + {% endif %} <p><b>Date Created: </b> {{ proposal.date_created }}</p> {% if url %} <p><b>Attachment: </b> diff --git a/website/templates/cfp.html b/website/templates/cfp.html index 8edf1e2..d76fbdf 100755 --- a/website/templates/cfp.html +++ b/website/templates/cfp.html @@ -84,8 +84,7 @@ <center><a href="{% url 'website:view_abstracts' %}" style="background:#D44727" class="button special">View Proposals</a> </center> {% else %} <center> - <a href="{% url 'website:submitcfp' %}" style="background:#D44727" class="button special">Submit an Abstract</a> - <a href="{% url 'website:submitcfw' %}" style="background:#D44727" class="button special">Submit a Workshop</a> + <a href="{% url 'website:view_abstracts' %}" style="background:#D44727" class="button special">View Proposals</a> </center> {% endif %} diff --git a/website/urls.py b/website/urls.py index 4347950..8e5c83e 100755 --- a/website/urls.py +++ b/website/urls.py @@ -8,8 +8,8 @@ urlpatterns = patterns('', url(r'^$', 'website.views.home', name='home'), # url(r'^contact/$', 'website.views.contact_us', name='contact'), 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.submitcfp', name='submitcfp'), + # url(r'^submit-cfw/$', 'website.views.submitcfw', name='submitcfw'), url(r'^accounts/register/$', 'website.views.userregister', name='userregister'), url(r'^accounts/login/$', 'website.views.cfp', name='cfp'), |