diff options
author | Alex Yatskov <alex@foosoft.net> | 2016-12-22 18:50:58 -0800 |
---|---|---|
committer | Alex Yatskov <alex@foosoft.net> | 2016-12-22 18:50:58 -0800 |
commit | 39fa11f72bae62985ee5b27103e5959dab30316c (patch) | |
tree | e7fe89d18a2b0bfa892ede044d7e6dcc076bbf7b /tmpl/dictionary.html | |
parent | 5710dc55a73491a0be2259fbd21874bddda54877 (diff) | |
parent | 9d21f8a456530c29c7c03db4896562a4902f6f8a (diff) |
Merge branch 'dev'
Diffstat (limited to 'tmpl/dictionary.html')
-rw-r--r-- | tmpl/dictionary.html | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/tmpl/dictionary.html b/tmpl/dictionary.html new file mode 100644 index 00000000..af0a6d28 --- /dev/null +++ b/tmpl/dictionary.html @@ -0,0 +1,26 @@ +<div class="dict-group well well-sm" data-title="{{title}}"> + <h4><span class="text-muted glyphicon glyphicon-book"></span> {{title}} <small>v.{{version}}</small></h4> + + <!-- <div class="row"> --> + <!-- <div class="col-xs-8"> --> + <!-- <h4><span class="text-muted glyphicon glyphicon-book"></span> {{title}} <small>v.{{version}}</small></h4> --> + <!-- </div> --> + <!-- <div class="col-xs-4 text-right disabled"> --> + <!-- <button type="button" class="dict-group-controls dict-delete btn btn-danger">Delete</button> --> + <!-- </div> --> + <!-- </div> --> + + <div class="dict-delete-progress"> + Dictionary data is being deleted, please be patient... + <div class="progress"> + <div class="progress-bar progress-bar-striped progress-bar-danger" style="width: 0%"></div> + </div> + </div> + + <div class="checkbox dict-group-controls {{#unless hasTerms}}disabled{{/unless}}"> + <label><input type="checkbox" class="dict-enable-terms" {{#unless hasTerms}}disabled{{/unless}} {{#if enableTerms}}checked{{/if}}> Enable term search</label> + </div> + <div class="checkbox dict-group-controls {{#unless hasKanji}}disabled{{/unless}}"> + <label><input type="checkbox" class="dict-enable-kanji" {{#unless hasKanji}}disabled{{/unless}} {{#if enableKanji}}checked{{/if}}> Enable Kanji search</label> + </div> +</div> |