mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-07-27 05:29:59 +00:00
inline up/down checkboxes
This commit is contained in:
parent
3a4432b4c8
commit
058cc7e264
1 changed files with 4 additions and 2 deletions
|
|
@ -132,8 +132,10 @@
|
|||
<label>Text<input type=text value={:task.text} /></label>
|
||||
<label>Notes<textarea rows=3>{:task.notes}</textarea></label>
|
||||
{#if equal(:task.type, 'habit')}
|
||||
<label><input type=checkbox checked={:task.up}><i></i>Up</label>
|
||||
<label><input type=checkbox checked={:task.down}><i></i>Down</label>
|
||||
<div class="control-group">
|
||||
<label class="checkbox inline"><input type=checkbox checked={:task.up}>Up</label>
|
||||
<label class="checkbox inline"><input type=checkbox checked={:task.down}>Down</label>
|
||||
</div>
|
||||
{/}
|
||||
{#if equal(:task.type, 'reward')}
|
||||
<label>Price<input type=text value={:task.price} /></label>
|
||||
|
|
|
|||
Loading…
Reference in a new issue