summaryrefslogtreecommitdiffstats
path: root/templates/user.html
blob: 53a30dc03d41ed07039e60a3b2e6449bd3b66c20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!-- user.html -->
{% extends "base_content.html" %}
{% load extra_tags %}
{% load humanize %}
{% block title %}{% spaceless %}{{ page_title }}{% endspaceless %}{% endblock %}
{% block forestyle%}
    <style type="text/css">
 		.history-table td { padding: 5px; }
 		.user-stats-table { margin-left:50px; }
	</style>
{% endblock %}
{% block forejs %}
        <script type="text/javascript">
            $().ready(function(){
                {% ifequal view_user request.user%}
                    $("#nav_profile").attr('className',"on");
                {% else %}
                    $("#nav_users").attr('className',"on");
               
                {% endifequal %}
            });     
        </script>
        {% block userjs %}
        {% endblock %}
{% endblock %}

{% block content %}
    <div id="mainbar-full">
        {% include "user_info.html" %}
        {% include "user_tabs.html" %}
        {% block usercontent %}
        {% endblock %}
        {% include "user_footer.html" %}
	</div>
{% endblock %}<!-- end user.html -->