templates/taggr.html
author Tero Marttila <terom@fixme.fi>
Wed, 03 Jun 2009 18:37:12 +0300
branchold-taggr
changeset 37 5df1a18df815
parent 24 001f52cd057e
permissions -rw-r--r--
Old taggr code, never finished
23
10841abbc01f taggr2, which is starting to shape up
terom
parents:
diff changeset
     1
<%! use_javascript = True %>
10841abbc01f taggr2, which is starting to shape up
terom
parents:
diff changeset
     2
<%inherit file="master.html" /> <!-- %> -->
10841abbc01f taggr2, which is starting to shape up
terom
parents:
diff changeset
     3
10841abbc01f taggr2, which is starting to shape up
terom
parents:
diff changeset
     4
    <div id="taggr">
10841abbc01f taggr2, which is starting to shape up
terom
parents:
diff changeset
     5
        <div id="tags">
10841abbc01f taggr2, which is starting to shape up
terom
parents:
diff changeset
     6
            <table cellpadding="0" cellspacing="0" id="tag_table">
10841abbc01f taggr2, which is starting to shape up
terom
parents:
diff changeset
     7
            </table>
10841abbc01f taggr2, which is starting to shape up
terom
parents:
diff changeset
     8
        </div>
24
001f52cd057e tagging/untagging should now work fully in taggr
terom
parents: 23
diff changeset
     9
        <div id="toolbar">
001f52cd057e tagging/untagging should now work fully in taggr
terom
parents: 23
diff changeset
    10
            <ul>
001f52cd057e tagging/untagging should now work fully in taggr
terom
parents: 23
diff changeset
    11
                <li><a href="#" onclick="selection_clear()">Clear selection</a></li>
001f52cd057e tagging/untagging should now work fully in taggr
terom
parents: 23
diff changeset
    12
                <li><input type="text" name="new_tag" id="new_tag" /><a href="#" onclick="new_tag($F($('new_tag')))" class="draggable">Create Tag</a></li>
001f52cd057e tagging/untagging should now work fully in taggr
terom
parents: 23
diff changeset
    13
            </ul>
001f52cd057e tagging/untagging should now work fully in taggr
terom
parents: 23
diff changeset
    14
        </div>
23
10841abbc01f taggr2, which is starting to shape up
terom
parents:
diff changeset
    15
        <div id="images">
10841abbc01f taggr2, which is starting to shape up
terom
parents:
diff changeset
    16
            <%include file="taggr_dir.html" />
10841abbc01f taggr2, which is starting to shape up
terom
parents:
diff changeset
    17
        </div>
10841abbc01f taggr2, which is starting to shape up
terom
parents:
diff changeset
    18
    </div>
10841abbc01f taggr2, which is starting to shape up
terom
parents:
diff changeset
    19