Improvements to field views and minor updates
This commit is contained in:
@@ -3,12 +3,13 @@
|
||||
<!-- value = value -->
|
||||
<!-- enddate = js value -->
|
||||
<div class="form-group">
|
||||
<label for="<?php echo $data['field']; ?>_label" class="col-md-2 control-label"><?php echo $data['text']; ?></label>
|
||||
<div class="input-group col-md-2">
|
||||
<input type="text" id="<?php echo $data['field']; ?>_label" value="<?php echo Site::date($data['value']); ?>" class="form-control" placeholder="<?php echo $data['text']; ?>">
|
||||
<label for="<?php echo Arr::get($data,'field'); ?>_label" class="col-md-<?php echo Arr::get($data,'classlabelnum',2); ?> control-label"><?php echo Arr::get($data,'text'); ?></label>
|
||||
<div class="input-group <?php echo Arr::get($data,'class','col-md-2'); ?>">
|
||||
<input type="text" id="<?php echo Arr::get($data,'field'); ?>_label" value="<?php echo Site::date(Arr::get($data,'value',time())); ?>" class="form-control" placeholder="<?php echo Arr::get($data,'text'); ?>" <?php echo Arr::convert(Arr::get($data,'attr',[])); ?>>
|
||||
<span class="input-group-addon"><i class="fa fa-calendar"></i></span>
|
||||
</div>
|
||||
<input type="hidden" name="<?php echo $data['field']; ?>" value="<?php echo $data['value']; ?>">
|
||||
<span class="col-md-offset-<?php echo Arr::get($data,'classlabelnum',2); ?> help-block with-errors"></span>
|
||||
<input type="hidden" name="<?php echo Arr::get($data,'field'); ?>" value="<?php echo Arr::get($data,'value'); ?>">
|
||||
</div>
|
||||
|
||||
<?php
|
||||
|
Reference in New Issue
Block a user