summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorAdolfo Fitoria <fitoria@fitoria-laptop.(none)>2009-10-13 11:16:02 -0600
committerAdolfo Fitoria <fitoria@fitoria-laptop.(none)>2009-10-13 11:16:02 -0600
commitb7f549bcd89c1f29757a91c54e2ef4e175a31d1c (patch)
treef540100d0546ed6031d01465f27bede2c424ff67 /templates
parent9dbe90c68d6503ad8a1dae8d7f8e75cbcf7b721b (diff)
downloadaskbot-b7f549bcd89c1f29757a91c54e2ef4e175a31d1c.tar.gz
askbot-b7f549bcd89c1f29757a91c54e2ef4e175a31d1c.tar.bz2
askbot-b7f549bcd89c1f29757a91c54e2ef4e175a31d1c.zip
removing categories feature from master
Diffstat (limited to 'templates')
-rw-r--r--templates/categories.html56
1 files changed, 0 insertions, 56 deletions
diff --git a/templates/categories.html b/templates/categories.html
deleted file mode 100644
index c77bd642..00000000
--- a/templates/categories.html
+++ /dev/null
@@ -1,56 +0,0 @@
-{% extends "base_content.html" %}
-<!-- tags.html -->
-{% load i18n %}
-{% load extra_tags %}
-{% load humanize %}
-{% block title %}{% spaceless %}{% trans "Category list" %}{% endspaceless %}{% endblock %}
-{% block forejs %}
- <script type="text/javascript">
- $().ready(function(){
- $("#nav_tags").attr('className',"on");
- $("#ipSearchTag").focus();
-
- var orderby = "{{ tab_id }}";
- if(orderby != "used" && orderby != "name")
- orderby = "used";
- $("#sort_" + orderby).attr('className',"on");
- $("#type-tag").attr('checked',true);
-
- Hilite.exact = false;
- Hilite.elementid = "searchtags";
- Hilite.debug_referrer = location.href;
- });
-
- </script>
-{% endblock %}
-{% block content %}
-<!-- Tabs -->
-<div class="tabBar">
- <div class="headQuestions">{% trans "Category list" %}</div>
-</div>
-<div id="searchtags">
-<p>
-{% if not categories.object_list %}
- <span>{% trans "Nothing found" %}</span>
-{% endif %}
-</p>
-<ul class="tagsList tags">
-{% for category in categories.object_list %}
- <li>
- <a href="{% url forum.views.category category|slugify %}" title="{% trans "see questions that matches" %}'{{ category }}'{% trans "category " %}" rel="tag">
- {{ category }}
- </a>&nbsp;
- <br>
-
- </li>
-{% endfor %}
-</ul>
-</div>
-
-{% endblock %}
-{% block tail %}
-<div class="pager">
- {% cnprog_paginator context %}
-</div>
-{% endblock %}
-<!-- end tags.html -->