pytask/templates/base.html
author Madhusudan.C.S <madhusudancs@gmail.com>
Mon, 17 Jan 2011 02:51:55 +0530
changeset 433 b8b8337efbb8
parent 425 e15749fab2e4
child 439 66bdb28ebaf6
permissions -rw-r--r--
Restructure the entire base template and move the left sidebar to another subtemplate.
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>
b8b8337efbb8 Restructure the entire base template and move the left sidebar to another subtemplate.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 425
diff changeset
    27
  {% 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
    28
  {% endblock %}
255
2bca2008fbe3 Added base.htm;
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    29
</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
    30
b8b8337efbb8 Restructure the entire base template and move the left sidebar to another subtemplate.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 425
diff changeset
    31
255
2bca2008fbe3 Added base.htm;
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    32
<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
    33
  <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
    34
    <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
    35
      <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
    36
    </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
    37
291
5daf523e20b4 added styles to base.css
Nishanth Amuluru <nishanth@fossee.in>
parents: 255
diff changeset
    38
    <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
    39
      <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
    40
        {% 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
    41
b8b8337efbb8 Restructure the entire base template and move the left sidebar to another subtemplate.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 425
diff changeset
    42
        {% 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
    43
          {% 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
    44
        {% 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
    45
      </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
    46
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
      <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
    48
        {% 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
    49
      </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
    50
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 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
    52
        {% 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
    53
          {% 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
    54
        {% endblock 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
    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 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
    58
      </div>
294
5aca9d92ccbb removed the css code from base.html and formatted the page properly
Nishanth Amuluru <nishanth@fossee.in>
parents: 291
diff changeset
    59
    </div>
5aca9d92ccbb removed the css code from base.html and formatted the page properly
Nishanth Amuluru <nishanth@fossee.in>
parents: 291
diff changeset
    60
    <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
    61
      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
    62
    </div>
5aca9d92ccbb removed the css code from base.html and formatted the page properly
Nishanth Amuluru <nishanth@fossee.in>
parents: 291
diff changeset
    63
</div> 
291
5daf523e20b4 added styles to base.css
Nishanth Amuluru <nishanth@fossee.in>
parents: 255
diff changeset
    64
255
2bca2008fbe3 Added base.htm;
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    65
</body>
2bca2008fbe3 Added base.htm;
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    66
</html>