diff options
author | Jayaram Pai | 2014-03-19 13:22:23 +0530 |
---|---|---|
committer | Jayaram Pai | 2014-03-19 13:22:23 +0530 |
commit | dffa556eede4d633879e55b60bf95e4469c530c0 (patch) | |
tree | 4f20ef8a8291123adfef10101a727b4f1029b0e1 /static/website/templates/base.html | |
parent | 45ee2992b4ec72c62d5ce69611589521e16d0366 (diff) | |
download | FOSSEE-Forum-dffa556eede4d633879e55b60bf95e4469c530c0.tar.gz FOSSEE-Forum-dffa556eede4d633879e55b60bf95e4469c530c0.tar.bz2 FOSSEE-Forum-dffa556eede4d633879e55b60bf95e4469c530c0.zip |
added commenting feature on the answers
replies are now renamed to answers
Diffstat (limited to 'static/website/templates/base.html')
-rw-r--r-- | static/website/templates/base.html | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/static/website/templates/base.html b/static/website/templates/base.html index 49c5f18..286a2ec 100644 --- a/static/website/templates/base.html +++ b/static/website/templates/base.html @@ -1,9 +1,12 @@ +{% load compress %} {% load static %} <html> <head> <title>Spoken-Tutorial Forums</title> + {% compress css %} <link rel="stylesheet" href="{% static 'website/css/bootstrap.min.css' %}" type="text/css" media="screen" charset="utf-8" /> <link rel="stylesheet" href="{% static 'website/css/main.css' %}" type="text/css" media="screen" charset="utf-8" /> + {% endcompress %} </head> <body> <div id="page-wrapper"> @@ -48,7 +51,7 @@ </a> <ul class="dropdown-menu"> <li><a href="{% url 'website:user_questions' user.id %}">My Questions</a></li> - <li><a href="{% url 'website:user_replies' user.id %}">My Replies</a></li> + <li><a href="{% url 'website:user_answers' user.id %}">My Answers</a></li> <li> <a href="{% url 'website:user_notifications' user.id %}"> Notifications @@ -102,12 +105,14 @@ </div> <!-- /#footer-inner --> </div> <!-- /#footer-wrapper --> </div> <!-- /#page-wrapper --> - + + {% compress js %} <script src="{% static 'website/js/jquery.min.js' %}"></script> <script src="{% static 'website/js/bootstrap.min.js' %}"></script> {% block javascript %} <!-- overide with custom javascript --> {% endblock %} + {% endcompress %} </body> </html> |