Changeset 1250 for PyLucidPlugins/DecodeUnicode/internal_pages/display.html
- Timestamp:
- 09/26/07 07:49:52 (14 months ago)
- Location:
- PyLucidPlugins/DecodeUnicode/internal_pages
- Files:
-
- 1 added
- 1 moved
-
. (added)
-
display.html (moved) (moved from PyLucidPlugins/DecodeUnicode/display.html) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
PyLucidPlugins/DecodeUnicode/internal_pages/display.html
r821 r1250 1 {*2 Jinja Template3 <pre>{% debug %}</pre>4 *}5 6 1 <fieldset><legend>{{ range_hex1 }}-{{ range_hex2 }} - {{ block_name }}:</legend> 7 2 <p> … … 23 18 <th>unicode name</th> 24 19 </tr> 25 {% for row in block_data %} {% cycle rowclass through "odd", "even" %}26 <tr class="{ { rowclass }}">20 {% for row in block_data %} 21 <tr class="{% cycle 'odd' 'even' %}"> 27 22 <td>{{ row.id }}</td> 28 23 <td><strong>{{ row.char }}</strong></td> 29 24 <td title="Use in Python like this: >print u'{{ row.unicode }}'<">{{ row.unicode }}</td> 30 25 <td title="Use in Python like this: >print '{{ row.hex }}'<">{{ row.hex }}</td> 31 <td>{{ row.html|escape xml}}</td>26 <td>{{ row.html|escape }}</td> 32 27 <td> 33 28 <a name="{{ row.id }}"><a href="{{ url }}#{{ row.id }}" title="anchor to this char">
