diff options
author | hardythe1 | 2015-08-31 13:33:56 +0530 |
---|---|---|
committer | hardythe1 | 2015-08-31 13:33:56 +0530 |
commit | 833396607a4217779f7e1b944d5e56f6b236f052 (patch) | |
tree | 3216b263126f4ca996e4bd45d6f880214c1cd5df /comments | |
parent | ce1e0bce6655d0118d8e8ad1ce866fb730d5309d (diff) | |
download | Python-TBC-Interface-833396607a4217779f7e1b944d5e56f6b236f052.tar.gz Python-TBC-Interface-833396607a4217779f7e1b944d5e56f6b236f052.tar.bz2 Python-TBC-Interface-833396607a4217779f7e1b944d5e56f6b236f052.zip |
change to activate our comment app
Diffstat (limited to 'comments')
-rw-r--r-- | comments/admin.py | 5 | ||||
-rw-r--r-- | comments/templates/comments/comment_base.html | 69 |
2 files changed, 7 insertions, 67 deletions
diff --git a/comments/admin.py b/comments/admin.py new file mode 100644 index 0000000..6ac89ae --- /dev/null +++ b/comments/admin.py @@ -0,0 +1,5 @@ +from models import * +from django.contrib import admin + +admin.site.register(Comment) +admin.site.register(Reply) diff --git a/comments/templates/comments/comment_base.html b/comments/templates/comments/comment_base.html index 057d2f0..4d9885a 100644 --- a/comments/templates/comments/comment_base.html +++ b/comments/templates/comments/comment_base.html @@ -96,15 +96,12 @@ <li><a href="{% url 'tbc:BooksUnderProgress' %}">Books Under Progress</a></li> </ul> </li> - <li><a href="{% url 'tbc:InternshipForms' %}">Internship Forms</a></li> + <!--li><a href="{% url 'tbc:InternshipForms' %}">Internship Forms</a></li> {% if user %} <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown">{{ user.first_name }}<b class="caret"></b></a> <ul class="dropdown-menu"> - <li><a href="{% url 'tbc:SubmitBook' %}">Submit Book</a></li> - <li><a href="{% url 'tbc:UpdateBook' %}">Update Submission</a></li> - <li><a href="{% url 'tbc:UpdatePassword' %}">Update Password</a></li> <li><a href="{% url 'tbc:UserLogout' %}">Logout</a></li> </ul> </li> @@ -123,7 +120,7 @@ {% if anonymous %} <li><a href="{% url 'tbc:UserLogin' %}">Login</a></li> <li><a href="{% url 'tbc:UserRegister' %}">Sign Up</a></li> - {% endif %} + {% endif %}<--> </ul> <!--/.nav --> </div><!--/.nav-collapse --> @@ -132,68 +129,6 @@ </div> <div class="container" id="comments-container"> {% block content %} - {% if up %} - <center> - <div class="alert" style="width:500px;"> - <a class="close" data-dismiss="alert" href="#">×</a> - <p>Book has been uploaded successfully !</p> - </div> - </center> - <div class="clearfix"></div> - {% endif %} - {% if login %} - <center> - <div class="alert" style="width:150px;height:23px;"> - <a class="close" data-dismiss="alert" href="#">×</a> - <p>Login Successful !</p> - </div> - </center> - <div class="clearfix"></div> - {% endif %} - {% if logout %} - <center> - <div class="alert" style="width:300px;height:23px;"> - <a class="close" data-dismiss="alert" href="#">×</a> - <p>You have logged out successfully !</p> - </div> - </center> - <div class="clearfix"></div> - {% endif %} - {% if update_book %} - <center> - <div class="alert" style="width:300px;height:23px;"> - <a class="close" data-dismiss="alert" href="#">×</a> - <p>Book has been updated successfully !</p> - </div> - </center> - <div class="clearfix"></div> - {% endif %} - {% if not_found %} - <center> - <div class="alert" style="width:650px;height:23px;"> - <a class="close" data-dismiss="alert" href="#">×</a> - <p>It seems that currently there is no book that you can update ! Please submit one.</p> - </div> - </center> - <div class="clearfix"></div> - {% endif %} - <div class="row-fluid"> - <center><h3>Recent Submissions</h3></center> - {% for item in items %} - <div class ="module-list"> - <a href="{% url 'tbc:BookDetails' item.book.id %}"><img src="{% static 'uploads/' %}{{ item.image.image }}"></a> - <center><a href="{% url 'tbc:BookDetails' item.book.id %}">{{ item.book.title }}</a></center> - </div> - {% endfor %} - </div> - <br> - <center> - <a class="btn btn-primary" href="{% url 'tbc:BrowseBooks' %}">Browse All Books</a> - </center> - <br> - <!-- - <input type=text> <input type=submit value=Search> - --> {% endblock %} <div class="clearfix"></div> <hr> |