File: index.html

package info (click to toggle)
python-googleapi 2.182.0-1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 533,852 kB
  • sloc: python: 11,076; javascript: 249; sh: 114; makefile: 59
file content (39 lines) | stat: -rw-r--r-- 1,120 bytes parent folder | download | duplicates (7)
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
36
37
38
39
<!doctype html>
<html>
  <head>
    <link href="/css/style.css" rel="stylesheet" type="text/cs">
    <link href="http://fonts.googleapis.com/css?family=Coming+Soon:regular" rel="stylesheet" type="text/css">
  </head>
  <body>
    <ul id="tasklist">
      {% if tasks|length == 0 %}
      <li>
        <span class="check">
          <span>
            &nbsp;
          </span>
        </span>
      {% if authorize_url %}
        <a class="title" title="Grant read access to your tasks" href="{{ authorize_url }}">Grant Access</a>
      {% else %}
        <a class="title" title="Add more tasks in Gmail" href="http://mail.google.com/">Add More Tasks</a>
      {% endif %}
      </li>
      {% endif %}
      {% for task in tasks %}
      <li class="{{ task.status }}">
        <span class="check">
          <span>
            {% if task.status == "completed" %}
            &#x2713;
            {% else %}
            &nbsp;
            {% endif %}
          </span>
        </span>
        <a class="title" title="{{ task.title }}">{{ task.title_short }}</a>
      </li>
      {% endfor %}
    </ul>
  </body>
</html>