ORB/templates/default/new/ingredient.tem

26 lines
1.3 KiB
Plaintext
Raw Normal View History

<li class="ingred">
2018-06-30 12:51:52 +01:00
<div class="grid-x">
<div class="small-1 cell">
<input class="quantity" type="text" placeholder="{L_RECIPE_ING_QUANT_PH}" value="%(quantity)s" />
2018-06-30 12:51:52 +01:00
</div>
<div class="small-2 cell">
<select class="units">
2018-06-30 12:51:52 +01:00
%(units)s
</select>
</div>
<div class="small-2 cell">
<select class="preps">
2018-06-30 12:51:52 +01:00
%(preps)s
</select>
</div>
<div class="small-3 cell">
<input type="text" class="ingredient" pattern="[\-\w,.:\(\)&amp;#\*\\ ']+" title="{L_RECIPE_ING_FORMAT}" placeholder="{L_RECIPE_ING_ING_PH}" value="%(name)s" />
2018-06-30 12:51:52 +01:00
</div>
<div class="small-3 cell">
<input type="text" class="notes" placeholder="{L_RECIPE_ING_NOTE_PH}" value="%(notes)s" />
2018-06-30 12:51:52 +01:00
</div>
<div class="small-1 cell">
<button class="button alert deletectrl" type="button" title="{L_RECIPE_ING_DELETE}"><i class="fa fa-trash" aria-hidden="true"></i></button>
2018-06-30 12:51:52 +01:00
</div>
</div>
</li>