changes-2
This commit is contained in:
@@ -87,8 +87,8 @@ class="nav-link active"
|
||||
|
||||
<div class="form-group col-sm-3 {{ $errors->has('ispublic') ? 'has-error' : '' }}">
|
||||
{!! Form::label('ispublic',Lang::get('lang.visibility')) !!} <span class="text-red"> *</span><br/>
|
||||
<input type="radio" name="ispublic" value="1" checked> Public
|
||||
<input type="radio" name="ispublic" value="0" > Private
|
||||
<input type="radio" name="ispublic" value="1" checked>{{Lang::get('lang.public')}}
|
||||
<input type="radio" name="ispublic" value="0" > {{Lang::get('lang.private')}}
|
||||
</div>
|
||||
</div>
|
||||
<!-- Admin Note : Textarea : -->
|
||||
|
||||
@@ -66,8 +66,8 @@ class="nav-link active"
|
||||
</a>
|
||||
|
||||
<div class="btn-group" id="toggle_event_editing" style="float: right; margin-bottom: 10">
|
||||
<button type="button" class="btn {{$user_status->status == '0' ? 'btn-info' : 'btn-default'}} locked_active">Inactive</button>
|
||||
<button type="button" class="btn {{$user_status->status == '1' ? 'btn-info' : 'btn-default'}} unlocked_inactive">Active</button>
|
||||
<button type="button" class="btn {{$user_status->status == '0' ? 'btn-info' : 'btn-default'}} locked_active">{{Lang::get('lang.inactive')}}</button>
|
||||
<button type="button" class="btn {{$user_status->status == '1' ? 'btn-info' : 'btn-default'}} unlocked_inactive">{{Lang::get('lang.active')}}</button>
|
||||
</div>
|
||||
</div>
|
||||
<div class="priority-table" style="padding-top: 10px">
|
||||
|
||||
@@ -282,7 +282,7 @@ class="nav-link active"
|
||||
<td>
|
||||
<select class="form-control" onChange="selectdata({!! $i !!})" id="selected{!! $i !!}" name="action[{!! $i !!}][a]" required>
|
||||
<option value="">-- {!! Lang::get('lang.select_an_action') !!} --</option>
|
||||
<optgroup label="Ticket">
|
||||
<optgroup label={{trans('lang.ticket')}}>
|
||||
<option value="reject" <?php
|
||||
if ($workflow_action->condition == 'reject') {
|
||||
echo "selected='selected'";
|
||||
|
||||
Reference in New Issue
Block a user