diff options
Diffstat (limited to 'tmpl/model.html')
-rw-r--r-- | tmpl/model.html | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tmpl/model.html b/tmpl/model.html new file mode 100644 index 00000000..94772316 --- /dev/null +++ b/tmpl/model.html @@ -0,0 +1,18 @@ +<tr> + <td class="col-sm-2">{{name}}</td> + <td class="col-sm-10"> + <div class="input-group"> + <input type="text" class="anki-field-value form-control" data-field="{{name}}" value="{{value}}"> + <div class="input-group-btn"> + <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown"> + <span class="caret"></span> + </button> + <ul class="dropdown-menu dropdown-menu-right"> + {{#each markers}} + <li><a class="marker-link" href="#">{{.}}</a></li> + {{/each}} + </ul> + </div> + </div> + </td> +</tr> |