summaryrefslogtreecommitdiffstats
path: root/funcweb/funcweb/templates/minions.html
blob: 68921494abb3182375f2783e7ecc9d1e92bc4c7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:py="http://genshi.edgewall.org/"
      xmlns:xi="http://www.w3.org/2001/XInclude">
  <xi:include href="master.html"/>
<head/>
<body>
  <div class="col-group">
    <div class="col" id="col1">
       <ul>
        <li><h2>minions</h2></li>
        <li py:for="minion in minions.keys()">
        <a onclick="$('#col3').empty();$('#col4').empty();$('#col2').empty().load('/minion/${minion}').show('slow');" href="#">${minion}</a>
        </li>
      </ul>
    </div>
    <div class="col" id="col2" />
    <div class="col" id="col3" />
    <div class="col" id="col4" />
  </div>
</body>
</html>