pytask/templates/base.html
author Madhusudan.C.S <madhusudancs@gmail.com>
Fri, 04 Feb 2011 16:35:29 +0530
changeset 554 18c47ba53250
parent 553 9984a18dda42
permissions -rw-r--r--
Update jQuery UI from 1.8.8 to 1.8.9.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
505
a05fde6309e1 Add support for sticky bar top bar.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 481
diff changeset
     1
{% load browse_helpers %}
a05fde6309e1 Add support for sticky bar top bar.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 481
diff changeset
     2
255
2bca2008fbe3 Added base.htm;
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     3
<html>
2bca2008fbe3 Added base.htm;
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     4
<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
     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
    {% 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
     7
  </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
     8
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
  {% 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
    10
  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
    11
  <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
    12
  <link type="text/css"
554
18c47ba53250 Update jQuery UI from 1.8.8 to 1.8.9.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 553
diff changeset
    13
      href="/pytask/static/css/jquery/ui/cupertino/jquery-ui-1.8.9.custom.css"
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
    14
      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
    15
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
  {% 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
    17
  {% 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
    18
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
b8b8337efbb8 Restructure the entire base template and move the left sidebar to another subtemplate.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 425
diff changeset
    20
  {% 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
    21
  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
    22
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
    23
  <script type="text/javascript"
553
9984a18dda42 Update jQuery to jQuery 1.5.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 505
diff changeset
    24
      src="/pytask/static/jquery/jquery-1.5.min.js">
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
    25
  </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
    26
  <script type="text/javascript"
554
18c47ba53250 Update jQuery UI from 1.8.8 to 1.8.9.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 553
diff changeset
    27
      src="/pytask/static/jquery/jquery-ui-1.8.9.custom.min.js">
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
    28
  </script>
448
870235dbac86 Add the source to Javascript required to login users.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 439
diff changeset
    29
  <script type="text/javascript"
459
e7b1a685b488 Add tooltip support for form fields using qtip.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 448
diff changeset
    30
      src="/pytask/static/jquery/jquery.qtip-1.0.0-rc3.min.js">
e7b1a685b488 Add tooltip support for form fields using qtip.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 448
diff changeset
    31
  </script>
e7b1a685b488 Add tooltip support for form fields using qtip.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 448
diff changeset
    32
  <script type="text/javascript"
448
870235dbac86 Add the source to Javascript required to login users.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 439
diff changeset
    33
      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
    34
  </script>
870235dbac86 Add the source to Javascript required to login users.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 439
diff changeset
    35
  <script type="text/javascript">
870235dbac86 Add the source to Javascript required to login users.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 439
diff changeset
    36
    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
    37
  </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
    38
  {% 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
    39
  {% endblock %}
255
2bca2008fbe3 Added base.htm;
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    40
</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
    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
255
2bca2008fbe3 Added base.htm;
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    43
<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
    44
  <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
    45
    <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
    46
      <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
    47
    </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
    48
481
b93a85589490 Add CSS for footer and add contact information to footer.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 479
diff changeset
    49
    <!-- Additional container divs are used here to do the liquid 3-column
b93a85589490 Add CSS for footer and add contact information to footer.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 479
diff changeset
    50
         layout trick in CSS. -->
479
fdaf0d8ceb53 Add additional div tags and use % based values for all properties instead of pixel based.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 459
diff changeset
    51
    <div id="container1">
fdaf0d8ceb53 Add additional div tags and use % based values for all properties instead of pixel based.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 459
diff changeset
    52
    <div id="container2">
505
a05fde6309e1 Add support for sticky bar top bar.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 481
diff changeset
    53
a05fde6309e1 Add support for sticky bar top bar.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 481
diff changeset
    54
      <!-- Generate Uberbar if the uberbar_message is present -->
a05fde6309e1 Add support for sticky bar top bar.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 481
diff changeset
    55
      {% if uberbar_message %}
a05fde6309e1 Add support for sticky bar top bar.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 481
diff changeset
    56
        {% as_uberbar uberbar_message %}
a05fde6309e1 Add support for sticky bar top bar.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 481
diff changeset
    57
      {% endif %}
a05fde6309e1 Add support for sticky bar top bar.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 481
diff changeset
    58
a05fde6309e1 Add support for sticky bar top bar.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 481
diff changeset
    59
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
    60
      <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
    61
        {% 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
    62
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
        {% 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
    64
          {% 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
    65
        {% 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
    66
      </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
    67
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
      <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
    69
        {% 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
    70
      </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
    71
b8b8337efbb8 Restructure the entire base template and move the left sidebar to another subtemplate.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 425
diff changeset
    72
      <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
    73
        {% 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
    74
          {% 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
    75
        {% endblock rightsidebar %}
448
870235dbac86 Add the source to Javascript required to login users.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 439
diff changeset
    76
        {% 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
    77
      </div>
294
5aca9d92ccbb removed the css code from base.html and formatted the page properly
Nishanth Amuluru <nishanth@fossee.in>
parents: 291
diff changeset
    78
    </div>
479
fdaf0d8ceb53 Add additional div tags and use % based values for all properties instead of pixel based.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 459
diff changeset
    79
    </div>
481
b93a85589490 Add CSS for footer and add contact information to footer.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 479
diff changeset
    80
    <div class="clearer">
b93a85589490 Add CSS for footer and add contact information to footer.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 479
diff changeset
    81
    </div>
294
5aca9d92ccbb removed the css code from base.html and formatted the page properly
Nishanth Amuluru <nishanth@fossee.in>
parents: 291
diff changeset
    82
    <div id="footer">
481
b93a85589490 Add CSS for footer and add contact information to footer.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 479
diff changeset
    83
      <div id="designed">
b93a85589490 Add CSS for footer and add contact information to footer.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 479
diff changeset
    84
        Designed by <a href="http://fossee.in">FOSSEE</a>
b93a85589490 Add CSS for footer and add contact information to footer.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 479
diff changeset
    85
      </div>
b93a85589490 Add CSS for footer and add contact information to footer.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 479
diff changeset
    86
b93a85589490 Add CSS for footer and add contact information to footer.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 479
diff changeset
    87
      <div id="contact">
b93a85589490 Add CSS for footer and add contact information to footer.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 479
diff changeset
    88
        If you have any trouble using this website, please write to
b93a85589490 Add CSS for footer and add contact information to footer.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 479
diff changeset
    89
        <a href="mailto:madhusudancs@fossee.in?subject=Trouble in using PyTask website">
b93a85589490 Add CSS for footer and add contact information to footer.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 479
diff changeset
    90
        "Madhusudan C.S. &lt;madhusudancs [ symbol looking like a ] fossee [symbol when you are done] in&gt;"
b93a85589490 Add CSS for footer and add contact information to footer.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 479
diff changeset
    91
        </a>
b93a85589490 Add CSS for footer and add contact information to footer.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 479
diff changeset
    92
      </div>
294
5aca9d92ccbb removed the css code from base.html and formatted the page properly
Nishanth Amuluru <nishanth@fossee.in>
parents: 291
diff changeset
    93
    </div>
481
b93a85589490 Add CSS for footer and add contact information to footer.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 479
diff changeset
    94
  </div> 
291
5daf523e20b4 added styles to base.css
Nishanth Amuluru <nishanth@fossee.in>
parents: 255
diff changeset
    95
255
2bca2008fbe3 Added base.htm;
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    96
</body>
2bca2008fbe3 Added base.htm;
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    97
</html>