0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
14.1-0
/
standard
/
htdocs
/
templates
/
goal
/
[
Home
]
File: edit_condition.tpl
{extends "layout_view.tpl"} {block name="title"} {title}{$title}{/title} {/block} {block name="content"} {remarksbox title="{tr}Changes will not be saved{/tr}"} {tr}Your changes to conditions are not saved until you save the goal.{/tr} {/remarksbox} <form class="form-horizontal condition-form" method="post" action="{service controller=goal action=edit_condition}"> <div class="form-group"> <label class="control-label col-md-3">{tr}Label{/tr}</label> <div class="col-md-9"> <input type="text" class="form-control" name="label" value="{$condition.label|escape}"> </div> </div> <div class="form-group"> <label class="control-label col-md-3">{tr}Operator{/tr}</label> <div class="col-md-9"> <label class="radio-inline"> <input type="radio" name="operator" value="atLeast" {if $condition.operator neq 'atMost'} checked {/if}> {tr}At Least{/tr} </label> <label class="radio-inline"> <input type="radio" name="operator" value="atMost" {if $condition.operator eq 'atMost'} checked {/if}> {tr}At Most{/tr} </label> </div> </div> <div class="form-group"> <label class="control-label col-md-3">{tr}Count{/tr}</label> <div class="col-md-9"> <input type="number" class="form-control" name="count" value="{$condition.count|escape}"> </div> </div> <div class="form-group"> <label class="control-label col-md-3">{tr}Metric{/tr}</label> <div class="col-md-9"> <select name="metric" class="form-control"> {foreach $metrics as $key => $metric} <option value="{$key|escape}" {if $condition.metric eq $key} selected {/if} data-arguments="{$metric.arguments|json_encode|escape}">{$metric.label|escape}</option> {/foreach} </select> </div> </div> <div class="form-group argument eventType"> <label class="control-label col-md-3">{tr}Event Type{/tr}</label> <div class="col-md-9"> <input type="text" class="form-control" name="eventType" value="{$condition.eventType|escape}"> </div> </div> {if $prefs.goal_badge_tracker} <div class="form-group argument trackerItemBadge"> <label class="control-label col-md-3">{tr}Badge{/tr}</label> <div class="col-md-9"> {object_selector _name=trackerItemBadge _value="trackeritem:`$condition.trackerItemBadge`" tracker_id=$prefs.goal_badge_tracker _class="form-control"} </div> </div> {/if} <div class="checkbox col-md-offset-3"> <label> <input type="checkbox" name="hidden" value="1" {if $condition.hidden}checked{/if}> {tr}Hide condition from users{/tr} </label> </div> <div class="submit col-md-offset-3"> <input type="submit" class="btn btn-primary" title="{tr}Apply Changes{/tr}" value="{tr}Apply{/tr}"> </div> </form> {jq} $('.condition-form select[name=metric]').change(function () { $('.condition-form .form-group.argument').hide(); $.each(this.selectedOptions, function (key, item) { $.each($(item).data('arguments'), function (key, arg) { $('.condition-form .form-group.argument.' + arg).show(); }); }) }).change(); {/jq} {/block}