2017-09-21 20:52:18 -07:00
|
|
|
{{#*inline "table"}}
|
|
|
|
{{#if data}}
|
|
|
|
<table class="info-output">
|
|
|
|
{{#each data}}
|
|
|
|
<tr>
|
|
|
|
<th>{{#if notes}}{{notes}}{{else}}{{name}}{{/if}}</th>
|
|
|
|
<td>{{value}}</td>
|
|
|
|
</tr>
|
|
|
|
{{/each}}
|
|
|
|
</table>
|
|
|
|
{{else}}
|
|
|
|
No data found
|
|
|
|
{{/if}}
|
|
|
|
{{/inline}}
|
|
|
|
|
2017-01-09 19:05:21 -08:00
|
|
|
{{#*inline "kanji"}}
|
2017-03-25 18:08:42 -07:00
|
|
|
<div class="entry" data-type="kanji">
|
2017-03-03 20:25:14 -08:00
|
|
|
<div class="actions">
|
2017-01-08 22:44:13 -08:00
|
|
|
{{#if addable}}
|
2017-07-01 18:27:49 -07:00
|
|
|
<a href="#" class="action-view-note pending disabled"><img src="/mixed/img/view-note.png" title="View added note (Alt + V)" alt></a>
|
2017-03-25 18:08:42 -07:00
|
|
|
<a href="#" class="action-add-note pending disabled" data-mode="kanji"><img src="/mixed/img/add-kanji.png" title="Add Kanji (Alt + K)" alt></a>
|
2017-01-08 22:44:13 -08:00
|
|
|
{{/if}}
|
2017-03-17 21:03:52 -07:00
|
|
|
{{#if source}}
|
2017-03-25 18:08:42 -07:00
|
|
|
<a href="#" class="source-term"><img src="/mixed/img/source-term.png" title="Source term (Alt + B)" alt></a>
|
2017-03-17 21:03:52 -07:00
|
|
|
{{/if}}
|
2017-07-01 18:27:49 -07:00
|
|
|
<img src="/mixed/img/entry-current.png" class="current" title="Current entry (Alt + Up/Down/Home/End/PgUp/PgDn)" alt>
|
2017-01-08 22:44:13 -08:00
|
|
|
</div>
|
|
|
|
|
2017-03-03 20:25:14 -08:00
|
|
|
<div class="glyph">{{character}}</div>
|
2017-01-08 22:44:13 -08:00
|
|
|
|
2017-09-17 19:16:08 -07:00
|
|
|
{{#if frequencies}}
|
|
|
|
<div>
|
|
|
|
{{#each frequencies}}
|
|
|
|
<span class="label label-default tag-frequency">{{dictionary}}:{{frequency}}</span>
|
|
|
|
{{/each}}
|
|
|
|
</div>
|
|
|
|
{{/if}}
|
|
|
|
|
|
|
|
{{#if tags}}
|
2017-03-03 20:25:14 -08:00
|
|
|
<div>
|
2017-01-08 22:44:13 -08:00
|
|
|
{{#each tags}}
|
2017-03-18 09:48:53 -07:00
|
|
|
<span class="label label-default tag-{{category}}" title="{{notes}}">{{name}}</span>
|
2017-01-08 22:44:13 -08:00
|
|
|
{{/each}}
|
|
|
|
</div>
|
2017-09-17 19:16:08 -07:00
|
|
|
{{/if}}
|
2017-01-08 22:44:13 -08:00
|
|
|
|
2017-09-15 14:03:05 -07:00
|
|
|
<table class="table table-condensed glyph-data">
|
2017-09-15 13:18:21 -07:00
|
|
|
<tr>
|
|
|
|
<th>Glossary</th>
|
2017-09-21 20:59:43 -07:00
|
|
|
<th>Readings</th>
|
2017-09-21 23:10:43 -07:00
|
|
|
<th>Statistics</th>
|
2017-09-15 13:18:21 -07:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td class="glossary">
|
|
|
|
{{#if glossary.[1]}}
|
2017-09-21 20:52:18 -07:00
|
|
|
<ol>{{#each glossary}}<li><span class="glossary-item">{{.}}</span></li>{{/each}}</ol>
|
2017-09-15 13:18:21 -07:00
|
|
|
{{else}}
|
|
|
|
<span class="glossary-item">{{glossary.[0]}}</span>
|
|
|
|
{{/if}}
|
|
|
|
</td>
|
2017-09-21 20:52:18 -07:00
|
|
|
<td class="reading">
|
2017-09-21 23:10:43 -07:00
|
|
|
{{#if onyomi}}<dl>{{#each onyomi}}<dd>{{.}}</dd>{{/each}}</dl>{{/if}}
|
|
|
|
{{#if kunyomi}}<dl>{{#each kunyomi}}<dd>{{.}}</dd>{{/each}}</dl>{{/if}}
|
2017-09-21 20:52:18 -07:00
|
|
|
</td>
|
2017-09-21 20:59:43 -07:00
|
|
|
<td>{{> table data=stats.misc}}</td>
|
2017-09-21 20:52:18 -07:00
|
|
|
</tr>
|
|
|
|
<tr>
|
2017-09-21 23:10:43 -07:00
|
|
|
<th colspan="3">Classifications</th>
|
2017-09-21 20:52:18 -07:00
|
|
|
</tr>
|
|
|
|
<tr>
|
2017-09-21 23:10:43 -07:00
|
|
|
<td colspan="3">{{> table data=stats.query}}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th colspan="3">Codepoints</th>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td colspan="3">{{> table data=stats.code}}</td>
|
2017-09-17 12:56:34 -07:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th colspan="3">Dictionary Indices</th>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
2017-09-21 20:52:18 -07:00
|
|
|
<td colspan="3">{{> table data=stats.index}}</td>
|
2017-09-15 13:18:21 -07:00
|
|
|
</tr>
|
|
|
|
</table>
|
2017-05-23 21:27:20 -07:00
|
|
|
|
|
|
|
{{#if debug}}
|
|
|
|
<pre>{{#dumpObject}}{{{.}}}{{/dumpObject}}</pre>
|
|
|
|
{{/if}}
|
2017-03-17 20:45:47 -07:00
|
|
|
</div>
|
2017-01-08 22:44:13 -08:00
|
|
|
{{/inline}}
|
|
|
|
|
2016-11-13 18:06:49 -08:00
|
|
|
{{#if definitions}}
|
2017-03-18 09:48:53 -07:00
|
|
|
{{#each definitions}}
|
|
|
|
{{#unless @first}}<hr>{{/unless}}
|
2017-05-23 21:27:20 -07:00
|
|
|
{{> kanji debug=../debug addable=../addable source=../source root=../root}}
|
2017-03-18 09:48:53 -07:00
|
|
|
{{/each}}
|
2016-11-13 18:06:49 -08:00
|
|
|
{{else}}
|
2017-09-17 12:56:34 -07:00
|
|
|
<p class="note">No results found</p>
|
2016-11-13 18:06:49 -08:00
|
|
|
{{/if}}
|