source: pycgibattler/trunk/10index.tmpl @ 57

Revision 57, 2.2 KB checked in by atzm, 13 years ago (diff)

add pycgibattler

  • Property svn:keywords set to Id
Line 
1## $Id$
2#encoding UTF-8
3#import time
4#include "00header.tmpl"
5
6      <div class="day">
7        <h2>
8          <span class="title">
9            ゚ントリヌ䞭のキャラクタヌ
10          </span>
11        </h2>
12        <div class="body">
13          <div class="section">
14            <h3><span class="sanchor">■</span> 最新 $len($entries) 件</h3>
15            <form action="$script" method="post" enctype="multipart/form-data">
16              <table class="stat">
17                <tr>
18                  <th><input type="submit" value="戊" /></th>
19                  <th>登録日</th>
20                  <th>名前</th>
21                  <th>HP</th>
22                  <th>SP</th>
23                  <th>攻撃力</th>
24                  <th>集䞭力</th>
25                  <th>防埡力</th>
26                  <th>玠早さ</th>
27                  <th>運</th>
28                </tr>
29#for $e in $entries
30                <tr>
31                  <td class="center"><input type="checkbox" name="warrior" value="$e.id" /></td>
32                  <td class="center">$time.strftime('%Y/%m/%d', time.localtime($e.mtime))</td>
33                  <td class="left"><a href="$script?id=$e.id">$e.warrior.name()</a></td>
34                  <td class="right">$e.warrior.hitpoint()</td>
35                  <td class="right">$e.warrior.skillpoint()</td>
36                  <td class="right">$e.warrior.strength()</td>
37                  <td class="right">$e.warrior.concentration()</td>
38                  <td class="right">$e.warrior.defense()</td>
39                  <td class="right">$e.warrior.agility()</td>
40                  <td class="right">$e.warrior.luck()</td>
41                </tr>
42#end for
43                <tr>
44                  <th><input type="submit" value="闘" /></th>
45                  <th>登録日</th>
46                  <th>名前</th>
47                  <th>HP</th>
48                  <th>SP</th>
49                  <th>攻撃力</th>
50                  <th>集䞭力</th>
51                  <th>防埡力</th>
52                  <th>玠早さ</th>
53                  <th>運</th>
54                </tr>
55              </table>
56            </form>
57          </div>
58        </div>
59      </div>
60
61#include "90footer.tmpl"
Note: See TracBrowser for help on using the repository browser.