templates/base.html
author nishanth
Tue, 02 Mar 2010 14:46:05 +0530
changeset 174 d034cd77cfa6
parent 173 b8e7a4e86b35
child 175 10a488a6fbba
permissions -rw-r--r--
added footer to base.html.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
12
a93eebabfeb1 created forms, views, templates, actions for home_page, browse_task.
nishanth
parents:
diff changeset
     1
<html>
a93eebabfeb1 created forms, views, templates, actions for home_page, browse_task.
nishanth
parents:
diff changeset
     2
<head>
a93eebabfeb1 created forms, views, templates, actions for home_page, browse_task.
nishanth
parents:
diff changeset
     3
    <title>{% block title %}PyTasks{% endblock %}</title>
173
b8e7a4e86b35 changed show_msg page to redirect instead of showing a link
nishanth
parents: 143
diff changeset
     4
    {% block js_script %} {% endblock %}
68
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
     5
<style type="text/css">
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
     6
        body {
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
     7
        font-family: Verdana, Arial, Helvetica, sans-serif;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
     8
        font-size: 11px;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
     9
        color: #333;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    10
        text-align: center;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    11
        margin: 0px;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    12
        padding: 20px 0px 20px 0px;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    13
        }
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    14
        #wrapper {
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    15
        width: 956px;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    16
        padding: 10px;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    17
        margin: 0px auto 0px auto;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    18
        height: auto;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    19
        text-align: left;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    20
        border: 1px solid #ddd;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    21
        }
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    22
        #header {
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    23
        margin: 0px;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    24
        padding: 0px;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    25
        height: 100px;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    26
        width: auto;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    27
        background-color: #f1f1f1;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    28
        }
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    29
        #container {
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    30
        padding: 0px;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    31
        margin: 10px 0px 0px 0px;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    32
        background-attachment: scroll;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    33
        background-image: url(back.gif);
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    34
        background-repeat: repeat-y;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    35
        background-position: 0px 0px;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    36
        height: auto; #default was 1%
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    37
        width: auto;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    38
        }
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    39
        #left {
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    40
        margin: 0px;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    41
        width: 160px;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    42
        padding: 10px 20px 10px 20px;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    43
        float: left;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    44
        }
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    45
        #nav {
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    46
        margin: 0px;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    47
        padding: 0px;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    48
        list-style-image: none;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    49
        list-style-type: none;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    50
        }
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    51
        #nav li {
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    52
        margin: 0px;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    53
        padding: 0px;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    54
        display: block;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    55
        background-attachment: scroll;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    56
        background-image: url(bullet.gif);
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    57
        background-repeat: no-repeat;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    58
        background-position: 0px 50%;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    59
        }
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    60
        #nav li a:link, #nav li a:visited, #nav li a:active {
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    61
        color: #666;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    62
        text-decoration: none;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    63
        display: block;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    64
        margin: 0px;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    65
        padding: 3px 15px 3px 15px;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    66
        width: 130px;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    67
        }
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    68
        #nav li a:hover {
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    69
        color: #999;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    70
        text-decoration: none;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    71
        }
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    72
        #center {
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    73
        height: auto;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    74
        width: 504px;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    75
        padding: 10px 20px 10px 20px;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    76
        float: left;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    77
        margin: 0px 0px 0px 6px;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    78
        line-height: 1.8em;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    79
        }
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    80
        h1 {
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    81
        font-size: 14px;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    82
        margin: 0px;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    83
        padding: 0px;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    84
        }
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    85
        #right {
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    86
        padding: 10px 20px 10px 20px;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    87
        height: auto;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    88
        width: 160px;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    89
        float: left;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    90
        margin: 0px 0px 0px 6px;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    91
        }
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    92
        .clearer {
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    93
        font-size: 0px;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    94
        line-height: 0px;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    95
        display: block;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    96
        margin: 0px;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    97
        padding: 0px;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    98
        clear: both;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
    99
        height: 0px;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
   100
        width: auto;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
   101
        }
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
   102
        #footer {
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
   103
        margin: 10px 0px 0px 0px;
174
d034cd77cfa6 added footer to base.html.
nishanth
parents: 173
diff changeset
   104
        text-align: left;
d034cd77cfa6 added footer to base.html.
nishanth
parents: 173
diff changeset
   105
        padding: 5px 0px 5px 0px;
68
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
   106
        background-color: #f1f1f1;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
   107
        }
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
   108
        #footer p {
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
   109
        color: #999;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
   110
        margin: 0px auto 0px auto;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
   111
        padding: 0px;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
   112
        }
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
   113
        #footer a:link, #footer a:visited, #footer a:active {
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
   114
        color: #999;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
   115
        text-decoration: none;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
   116
        }
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
   117
        #footer a:hover {
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
   118
        color: #ccc;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
   119
        text-decoration: none;
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
   120
        } 
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
   121
</style>
12
a93eebabfeb1 created forms, views, templates, actions for home_page, browse_task.
nishanth
parents:
diff changeset
   122
</head>
68
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
   123
12
a93eebabfeb1 created forms, views, templates, actions for home_page, browse_task.
nishanth
parents:
diff changeset
   124
<body>
68
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
   125
<div id="wrapper">
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
   126
    <div id="header">
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
   127
        <h2><a href="/">PyTasks</a></h2>
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
   128
    </div>
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
   129
    <div id="container">
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
   130
        <div id="left">
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
   131
        <ul id="nav">
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
   132
            <li><a href="/" title="home">home</a></li>
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
   133
            {% if user.is_authenticated %}
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
   134
                <li><a href="/task/browse/" title="tasks">tasks</a></li>
137
e56b95298254 now requests in sidebar shows the no.of unread notifications.
nishanth
parents: 70
diff changeset
   135
                <li><a href="/user/notifications/" title="notifications">
143
796ff9e279a8 now if a user accepts to be a mentor, all his pending reqs will be made invalid.
nishanth
parents: 137
diff changeset
   136
                {% if user.unread_notifications.count %}
796ff9e279a8 now if a user accepts to be a mentor, all his pending reqs will be made invalid.
nishanth
parents: 137
diff changeset
   137
                    notifications({{user.unread_notifications.count}})
137
e56b95298254 now requests in sidebar shows the no.of unread notifications.
nishanth
parents: 70
diff changeset
   138
                {% else %}
e56b95298254 now requests in sidebar shows the no.of unread notifications.
nishanth
parents: 70
diff changeset
   139
                    notifications
e56b95298254 now requests in sidebar shows the no.of unread notifications.
nishanth
parents: 70
diff changeset
   140
                {% endif %}
e56b95298254 now requests in sidebar shows the no.of unread notifications.
nishanth
parents: 70
diff changeset
   141
                </a></li>
e56b95298254 now requests in sidebar shows the no.of unread notifications.
nishanth
parents: 70
diff changeset
   142
                <li><a href="/user/requests/" title="Requests">
143
796ff9e279a8 now if a user accepts to be a mentor, all his pending reqs will be made invalid.
nishanth
parents: 137
diff changeset
   143
                {% if user.unread_requests.count %}
796ff9e279a8 now if a user accepts to be a mentor, all his pending reqs will be made invalid.
nishanth
parents: 137
diff changeset
   144
                    requests({{user.unread_requests.count}})
137
e56b95298254 now requests in sidebar shows the no.of unread notifications.
nishanth
parents: 70
diff changeset
   145
                {% else %}
e56b95298254 now requests in sidebar shows the no.of unread notifications.
nishanth
parents: 70
diff changeset
   146
                    requests
e56b95298254 now requests in sidebar shows the no.of unread notifications.
nishanth
parents: 70
diff changeset
   147
                {% endif %}
e56b95298254 now requests in sidebar shows the no.of unread notifications.
nishanth
parents: 70
diff changeset
   148
                </a></li>
68
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
   149
                <br>
70
a14ec2f09beb removed unwanted links.
nishanth
parents: 68
diff changeset
   150
                <li><a href="/user/view/uid={{user.id}}">my profile</a></li>
68
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
   151
                <li><a href="/accounts/logout/">logout</a></li>
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
   152
            {% else %}
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
   153
                <li><a href="/accounts/login/" title="login">login</a></li>
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
   154
            {% endif %}
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
   155
        </ul>
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
   156
        </div>
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
   157
        <div id="center">
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
   158
            {% block content %}This is the default content{% endblock %}
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
   159
        </div>
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
   160
        <div id="right">
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
   161
            <!--{% if user.is_authenticated %}
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
   162
            <a href="/accounts/logout">logout</a> 
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
   163
            {% endif %}-->
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
   164
        </div>
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
   165
        <div class="clearer">
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
   166
        </div>
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
   167
    </div>
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
   168
    <div id="footer">
174
d034cd77cfa6 added footer to base.html.
nishanth
parents: 173
diff changeset
   169
    Designed by <a href="http://fossee.in">FOSSEE</a>
68
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
   170
    </div>
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
   171
</div> 
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
   172
624f9fd438e3 deleted unwanted code in user.py, added css for testing in base.html.
anoop
parents: 56
diff changeset
   173
</body>
12
a93eebabfeb1 created forms, views, templates, actions for home_page, browse_task.
nishanth
parents:
diff changeset
   174
</html>