{# /*start working 25 july */ #}
{{ header }}{{ column_left }}
<div id="content">
  <div class="page-header">
    <div class="container-fluid">
      <div class="pull-right">
        <button type="submit" form="form-module" data-toggle="tooltip" title="{{ button_save }}" class="btn btn-primary"><i class="fa fa-save"></i></button>
        <a href="{{ cancel }}" data-toggle="tooltip" title="{{ button_cancel }}" class="btn btn-default"><i class="fa fa-reply"></i></a></div>
      <h1>{{ heading_title }}</h1>
      <ul class="breadcrumb">
        {% for breadcrumb in breadcrumbs %}
        <li><a href="{{ breadcrumb.href }}">{{ breadcrumb.text }}</a></li>
        {% endfor %}
      </ul>
    </div>
  </div>
  <div class="container-fluid">
    {% if error_warning %}
    <div class="alert alert-danger alert-dismissible"><i class="fa fa-exclamation-circle"></i> {{ error_warning }}
      <button type="button" class="close" data-dismiss="alert">&times;</button>
    </div>
    {% endif %}
    <div class="panel panel-default">
      <div class="panel-heading">
        <h3 class="panel-title"><i class="fa fa-pencil"></i> {{ text_edit }}</h3>
      </div>
      <div class="panel-body">
        <form action="{{ action }}" method="post" enctype="multipart/form-data" id="form-module" class="form-horizontal">
          <div class="form-group">
            <label class="col-sm-2 control-label" for="input-name">{{ entry_name }}</label>
            <div class="col-sm-10">
              <input type="text" name="name" value="{{ name }}" placeholder="{{ entry_name }}" id="input-name" class="form-control" />
              {% if error_name %}
              <div class="text-danger">{{ error_name }}</div>
              {% endif %}
            </div>
          </div>
          <div class="form-group">
            <label class="col-sm-2 control-label" for="input-limit">{{ entry_limit }}</label>
            <div class="col-sm-10">
              <input type="text" name="limit" value="{{ limit }}" placeholder="{{ entry_limit }}" id="input-limit" class="form-control" />
            </div>
          </div>
          <div class="form-group">
            <label class="col-sm-2 control-label" for="input-ratingshow">{{ entry_ratingshow }}</label>
            <div class="col-sm-10">
              <div class="btn-group" data-toggle="buttons">
                <label class="btn btn-default {{ ratingshow=='1' ? 'active' : '' }}">
                  <input name="ratingshow" {{ ratingshow=='1' ? 'checked="checked"' : '' }} autocomplete="off" value="1" type="radio">{{ text_yes }}
                </label>
                <label class="btn btn-default {{ ratingshow=='0' ? 'active' : '' }}">
                  <input name="ratingshow" {{ ratingshow=='0' ? 'checked="checked"' : '' }} autocomplete="off" value="0" type="radio"> {{ text_no }}
                </label>
              </div>
            </div>
          </div>          
          <div class="form-group">
            <label class="col-sm-2 control-label" for="input-ratingshowcount">{{ entry_ratingshowcount }}</label>
            <div class="col-sm-10">
              <div class="btn-group" data-toggle="buttons">
                <label class="btn btn-default {{ ratingshowcount=='1' ? 'active' : '' }}">
                  <input name="ratingshowcount" {{ ratingshowcount=='1' ? 'checked="checked"' : '' }} autocomplete="off" value="1" type="radio">{{ text_yes }}
                </label>
                <label class="btn btn-default {{ ratingshowcount=='0' ? 'active' : '' }}">
                  <input name="ratingshowcount" {{ ratingshowcount=='0' ? 'checked="checked"' : '' }} autocomplete="off" value="0" type="radio"> {{ text_no }}
                </label>
              </div>
            </div>
          </div>
          <div class="form-group">
            <label class="col-sm-2 control-label" for="input-titleshow">{{ entry_titleshow }}</label>
            <div class="col-sm-10">
              <div class="btn-group" data-toggle="buttons">
                <label class="btn btn-default {{ titleshow=='1' ? 'active' : '' }}">
                  <input name="titleshow" {{ titleshow=='1' ? 'checked="checked"' : '' }} autocomplete="off" value="1" type="radio">{{ text_yes }}
                </label>
                <label class="btn btn-default {{ titleshow=='0' ? 'active' : '' }}">
                  <input name="titleshow" {{ titleshow=='0' ? 'checked="checked"' : '' }} autocomplete="off" value="0" type="radio"> {{ text_no }}
                </label>
              </div>
            </div>
          </div>
          <div class="form-group">
            <label class="col-sm-2 control-label" for="input-reviewpageaddon">{{ entry_reviewaddon }}</label>
            <div class="col-sm-10">
              <div class="btn-group" data-toggle="buttons">
                <label class="btn btn-default {{ reviewaddon=='DAYSAGO' ? 'active' : '' }}">
                  <input name="reviewaddon" {{ reviewaddon=='DAYSAGO' ? 'checked="checked"' : '' }} autocomplete="off" value="DAYSAGO" type="radio">{{ entry_daysago }}
                </label>
                <label class="btn btn-default {{ reviewaddon=='DATEFORMAT' ? 'active' : '' }}">
                  <input name="reviewaddon" {{ reviewaddon=='DATEFORMAT' ? 'checked="checked"' : '' }} autocomplete="off" value="DATEFORMAT" type="radio"> {{ entry_dateformat }}
                </label>
              </div>
            </div>
          </div>
          <div class="form-group reviewaddon-dateformat">
            <label class="col-sm-2 control-label" for="input-dateformat">{{ entry_dateformat }}</label>
            <div class="col-sm-10">
              <input name="dateformat" value="{{ dateformat }}" placeholder="{{ entry_dateformat }}" id="input-dateformat" class="form-control" type="text" />
            </div>
          </div>
          <div class="form-group">
            <label class="col-sm-2 control-label" for="input-productthumb">{{ entry_productthumb }}</label>
            <div class="col-sm-10">
              <div class="row">
                <div class="col-sm-6">
                  <div class="input-group">
                  <input type="text" name="productthumb_width" value="{{ productthumb_width }}" placeholder="{{ text_width }}" id="input-productthumb-width" class="form-control" />
                  <span class="input-group-btn">
                    <button type="button" class="btn btn-primary"><i class="fa fa-arrows-h"></i></button>
                  </span>
                  </div>
                </div>
                <div class="col-sm-6">
                  <div class="input-group">
                  <input type="text" name="productthumb_height" value="{{ productthumb_height }}" placeholder="{{ text_height }}"  id="input-productthumb-height" class="form-control" />
                  <span class="input-group-btn">
                    <button type="button" class="btn btn-primary"><i class="fa fa-arrows-v"></i></button>
                  </span>
                  </div>
                </div>
              </div> 
              {% if error_productthumb %}
              <div class="text-danger">{{ error_productthumb }}</div>
              {% endif %}
            </div>
          </div>
          <div class="form-group">
            <label class="col-sm-2 control-label" for="input-status">{{ entry_status }}</label>
            <div class="col-sm-10">
              <select name="status" id="input-status" class="form-control">
                {% if status %}
                <option value="1" selected="selected">{{ text_enabled }}</option>
                <option value="0">{{ text_disabled }}</option>
                {% else %}
                <option value="1">{{ text_enabled }}</option>
                <option value="0" selected="selected">{{ text_disabled }}</option>
                {% endif %}
              </select>
            </div>
          </div>
        </form>
      </div>
    </div>
  </div>
  <script type="text/javascript"><!--  
  $('input[name="reviewaddon"]').on('change', function() {
  if($(this).val()=='DATEFORMAT') {
    $('.reviewaddon-dateformat').show();
  } else {
    $('.reviewaddon-dateformat').hide();
  }
  });
  $('input[name="reviewaddon"]:checked').trigger('change');  
  //--></script>
  </div>
{{ footer }}
{# /*end working 25 july */ #}