diff options
author | Prashant S | 2018-08-23 17:03:41 +0530 |
---|---|---|
committer | GitHub | 2018-08-23 17:03:41 +0530 |
commit | b0b42e5553658fbd3aee833b555435a4401d208c (patch) | |
tree | e9fd275a3fd808f9c25a1f343210c6e997e22a38 /static/website/templates/proposal.html | |
parent | e5eeecc7abdce65aa81d6b68ba4304068ee1a5ca (diff) | |
parent | 756d9e437cc0e573558046d7ad2b1e629487865d (diff) | |
download | SciPy2018-b0b42e5553658fbd3aee833b555435a4401d208c.tar.gz SciPy2018-b0b42e5553658fbd3aee833b555435a4401d208c.tar.bz2 SciPy2018-b0b42e5553658fbd3aee833b555435a4401d208c.zip |
Merge pull request #8 from prashantsinalkar/development
added new views
Diffstat (limited to 'static/website/templates/proposal.html')
-rw-r--r-- | static/website/templates/proposal.html | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/static/website/templates/proposal.html b/static/website/templates/proposal.html index c6b51c3..2d30137 100644 --- a/static/website/templates/proposal.html +++ b/static/website/templates/proposal.html @@ -53,13 +53,15 @@ </ul> <br/> {% if user.is_superuser %} <center> - <a href="{{ SITE_URL }}/proposal/view" class="btn btn-info">View Proposals</a> - <a href="{{ SITE_URL }}/proposal/submitcfp" class="btn btn-info">Submit Proposal</a> - <a href="" class="btn btn-info">Submit Workshop</a> + <a href="{% url 'website:view_abstracts' %}" class="btn btn-info">View Proposals</a> + <a href="{% url 'website:submit-cfp' %}" class="btn btn-info">Submit Proposal</a> + <a href="{% url 'website:submit-cfw' %}" class="btn btn-info">Submit Workshop</a> </center> {% else %} <center> - <a href="{{ SITE_URL }}/proposal/view" class="btn btn-info">View Proposals</a> + <a href="{% url 'website:view_abstracts' %}" class="btn btn-info">View Proposals</a> + <a href="{% url 'website:submit-cfp' %}" class="btn btn-info">Submit Proposal</a> + <a href="{% url 'website:submit-cfw' %}" class="btn btn-info">Submit Workshop</a> </center> {% endif %} {% else %} @@ -80,9 +82,9 @@ {{ form.as_p }} <button class="button special" name="login" type="submit">Login</button> <br/><br/> - <a style="padding-right : 20px;" href="{% url 'userregister' %}" class="btn btn btn-primary">Create an Account + <a style="padding-right : 20px;" href="{% url 'website:userregister' %}" class="btn btn btn-primary">Create an Account </a><br> - <a href="/2017/forgotpassword/">Forgot Password?</a> {% csrf_token %} + <a href="/2018/forgotpassword/">Forgot Password?</a> {% csrf_token %} </form> <!-- </div> --> <p>Or Sign in with: <br> @@ -143,6 +145,6 @@ </div> {% endif %} - +<div class="row" style="margin-top: 4vh;"></div> </section> {% endblock %} |