pytask/templates/base.html
author Madhusudan.C.S <madhusudancs@gmail.com>
Tue, 18 Jan 2011 01:06:21 +0530
changeset 448 870235dbac86
parent 439 66bdb28ebaf6
child 459 e7b1a685b488
permissions -rw-r--r--
Add the source to Javascript required to login users.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
255
2bca2008fbe3 Added base.htm;
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     1
<html>
2bca2008fbe3 Added base.htm;
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     2
<head>
433
b8b8337efbb8 Restructure the entire base template and move the left sidebar to another subtemplate.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 425
diff changeset
     3
  <title>
b8b8337efbb8 Restructure the entire base template and move the left sidebar to another subtemplate.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 425
diff changeset
     4
    {% block title %}PyTasks{% endblock %}
b8b8337efbb8 Restructure the entire base template and move the left sidebar to another subtemplate.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 425
diff changeset
     5
  </title>
b8b8337efbb8 Restructure the entire base template and move the left sidebar to another subtemplate.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 425
diff changeset
     6
b8b8337efbb8 Restructure the entire base template and move the left sidebar to another subtemplate.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 425
diff changeset
     7
  {% comment %}Load site wide CSS here. Additional styling must be
b8b8337efbb8 Restructure the entire base template and move the left sidebar to another subtemplate.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 425
diff changeset
     8
  loaded in the block that follows{% endcomment %}
b8b8337efbb8 Restructure the entire base template and move the left sidebar to another subtemplate.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 425
diff changeset
     9
  <link rel=stylesheet href="/pytask/static/css/base.css" type="text/css" >
b8b8337efbb8 Restructure the entire base template and move the left sidebar to another subtemplate.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 425
diff changeset
    10
  <link type="text/css"
b8b8337efbb8 Restructure the entire base template and move the left sidebar to another subtemplate.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 425
diff changeset
    11
      href="/pytask/static/css/jquery/ui/cupertino/jquery-ui-1.8.8.custom.css"
b8b8337efbb8 Restructure the entire base template and move the left sidebar to another subtemplate.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 425
diff changeset
    12
      rel="stylesheet" />
b8b8337efbb8 Restructure the entire base template and move the left sidebar to another subtemplate.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 425
diff changeset
    13
b8b8337efbb8 Restructure the entire base template and move the left sidebar to another subtemplate.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 425
diff changeset
    14
  {% block css %}
b8b8337efbb8 Restructure the entire base template and move the left sidebar to another subtemplate.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 425
diff changeset
    15
  {% endblock %}
b8b8337efbb8 Restructure the entire base template and move the left sidebar to another subtemplate.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 425
diff changeset
    16
b8b8337efbb8 Restructure the entire base template and move the left sidebar to another subtemplate.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 425
diff changeset
    17
b8b8337efbb8 Restructure the entire base template and move the left sidebar to another subtemplate.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 425
diff changeset
    18
  {% comment %}Load site wide javascript here. Additional scripts must
b8b8337efbb8 Restructure the entire base template and move the left sidebar to another subtemplate.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 425
diff changeset
    19
  be loaded in the block that follows{% endcomment %}
425
e15749fab2e4 Restructured create form to use templatetags and use Javascript for autcomplete.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 417
diff changeset
    20
433
b8b8337efbb8 Restructure the entire base template and move the left sidebar to another subtemplate.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 425
diff changeset
    21
  <script type="text/javascript"
b8b8337efbb8 Restructure the entire base template and move the left sidebar to another subtemplate.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 425
diff changeset
    22
      src="/pytask/static/jquery/jquery-1.4.4.min.js">
b8b8337efbb8 Restructure the entire base template and move the left sidebar to another subtemplate.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 425
diff changeset
    23
  </script>
b8b8337efbb8 Restructure the entire base template and move the left sidebar to another subtemplate.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 425
diff changeset
    24
  <script type="text/javascript"
b8b8337efbb8 Restructure the entire base template and move the left sidebar to another subtemplate.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 425
diff changeset
    25
      src="/pytask/static/jquery/jquery-ui-1.8.8.custom.min.js">
b8b8337efbb8 Restructure the entire base template and move the left sidebar to another subtemplate.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 425
diff changeset
    26
  </script>
448
870235dbac86 Add the source to Javascript required to login users.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 439
diff changeset
    27
  <script type="text/javascript"
870235dbac86 Add the source to Javascript required to login users.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 439
diff changeset
    28
      src="/pytask/static/js/login.js">
870235dbac86 Add the source to Javascript required to login users.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 439
diff changeset
    29
  </script>
870235dbac86 Add the source to Javascript required to login users.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 439
diff changeset
    30
  <script type="text/javascript">
870235dbac86 Add the source to Javascript required to login users.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 439
diff changeset
    31
    login_user("{% url auth_login %}");
870235dbac86 Add the source to Javascript required to login users.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 439
diff changeset
    32
  </script>
433
b8b8337efbb8 Restructure the entire base template and move the left sidebar to another subtemplate.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 425
diff changeset
    33
  {% block js %}
b8b8337efbb8 Restructure the entire base template and move the left sidebar to another subtemplate.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 425
diff changeset
    34
  {% endblock %}
255
2bca2008fbe3 Added base.htm;
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    35
</head>
433
b8b8337efbb8 Restructure the entire base template and move the left sidebar to another subtemplate.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 425
diff changeset
    36
b8b8337efbb8 Restructure the entire base template and move the left sidebar to another subtemplate.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 425
diff changeset
    37
255
2bca2008fbe3 Added base.htm;
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    38
<body>
433
b8b8337efbb8 Restructure the entire base template and move the left sidebar to another subtemplate.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 425
diff changeset
    39
  <div id="wrapper">
294
5aca9d92ccbb removed the css code from base.html and formatted the page properly
Nishanth Amuluru <nishanth@fossee.in>
parents: 291
diff changeset
    40
    <div id="header">
433
b8b8337efbb8 Restructure the entire base template and move the left sidebar to another subtemplate.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 425
diff changeset
    41
      <h2><a href="{% url home_page %}">PyTask</a></h2>
294
5aca9d92ccbb removed the css code from base.html and formatted the page properly
Nishanth Amuluru <nishanth@fossee.in>
parents: 291
diff changeset
    42
    </div>
433
b8b8337efbb8 Restructure the entire base template and move the left sidebar to another subtemplate.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 425
diff changeset
    43
291
5daf523e20b4 added styles to base.css
Nishanth Amuluru <nishanth@fossee.in>
parents: 255
diff changeset
    44
    <div id="container">
433
b8b8337efbb8 Restructure the entire base template and move the left sidebar to another subtemplate.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 425
diff changeset
    45
      <div id="left">
b8b8337efbb8 Restructure the entire base template and move the left sidebar to another subtemplate.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 425
diff changeset
    46
        {% include '_left_sidebar.html' %}
b8b8337efbb8 Restructure the entire base template and move the left sidebar to another subtemplate.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 425
diff changeset
    47
b8b8337efbb8 Restructure the entire base template and move the left sidebar to another subtemplate.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 425
diff changeset
    48
        {% block leftsidebar %}
b8b8337efbb8 Restructure the entire base template and move the left sidebar to another subtemplate.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 425
diff changeset
    49
          {% comment %}Additional Left Sidebar elements go here{% endcomment %}
b8b8337efbb8 Restructure the entire base template and move the left sidebar to another subtemplate.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 425
diff changeset
    50
        {% endblock leftsidebar %}
b8b8337efbb8 Restructure the entire base template and move the left sidebar to another subtemplate.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 425
diff changeset
    51
      </div>
b8b8337efbb8 Restructure the entire base template and move the left sidebar to another subtemplate.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 425
diff changeset
    52
b8b8337efbb8 Restructure the entire base template and move the left sidebar to another subtemplate.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 425
diff changeset
    53
      <div id="center">
b8b8337efbb8 Restructure the entire base template and move the left sidebar to another subtemplate.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 425
diff changeset
    54
        {% block content %}This is the default content{% endblock content %}
b8b8337efbb8 Restructure the entire base template and move the left sidebar to another subtemplate.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 425
diff changeset
    55
      </div>
b8b8337efbb8 Restructure the entire base template and move the left sidebar to another subtemplate.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 425
diff changeset
    56
b8b8337efbb8 Restructure the entire base template and move the left sidebar to another subtemplate.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 425
diff changeset
    57
      <div id="right">
b8b8337efbb8 Restructure the entire base template and move the left sidebar to another subtemplate.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 425
diff changeset
    58
        {% block rightsidebar %}
b8b8337efbb8 Restructure the entire base template and move the left sidebar to another subtemplate.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 425
diff changeset
    59
          {% comment %}Additional Right Sidebar elements go here{% endcomment %}
b8b8337efbb8 Restructure the entire base template and move the left sidebar to another subtemplate.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 425
diff changeset
    60
        {% endblock rightsidebar %}
448
870235dbac86 Add the source to Javascript required to login users.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 439
diff changeset
    61
        {% include "_right_sidebar.html" %}
433
b8b8337efbb8 Restructure the entire base template and move the left sidebar to another subtemplate.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 425
diff changeset
    62
      </div>
b8b8337efbb8 Restructure the entire base template and move the left sidebar to another subtemplate.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 425
diff changeset
    63
b8b8337efbb8 Restructure the entire base template and move the left sidebar to another subtemplate.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 425
diff changeset
    64
      <div class="clearer">
b8b8337efbb8 Restructure the entire base template and move the left sidebar to another subtemplate.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 425
diff changeset
    65
      </div>
294
5aca9d92ccbb removed the css code from base.html and formatted the page properly
Nishanth Amuluru <nishanth@fossee.in>
parents: 291
diff changeset
    66
    </div>
5aca9d92ccbb removed the css code from base.html and formatted the page properly
Nishanth Amuluru <nishanth@fossee.in>
parents: 291
diff changeset
    67
    <div id="footer">
433
b8b8337efbb8 Restructure the entire base template and move the left sidebar to another subtemplate.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 425
diff changeset
    68
      Designed by <a href="http://fossee.in">FOSSEE</a>
294
5aca9d92ccbb removed the css code from base.html and formatted the page properly
Nishanth Amuluru <nishanth@fossee.in>
parents: 291
diff changeset
    69
    </div>
5aca9d92ccbb removed the css code from base.html and formatted the page properly
Nishanth Amuluru <nishanth@fossee.in>
parents: 291
diff changeset
    70
</div> 
291
5daf523e20b4 added styles to base.css
Nishanth Amuluru <nishanth@fossee.in>
parents: 255
diff changeset
    71
255
2bca2008fbe3 Added base.htm;
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    72
</body>
2bca2008fbe3 Added base.htm;
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    73
</html>