2014-05-14 13:24:20 +00:00
|
|
|
<?= Form::open(['onsubmit'=>'return false']) ?>
|
|
|
|
|
<div class="modal-header">
|
|
|
|
|
<button type="button" class="close" data-dismiss="popup">×</button>
|
2015-02-14 06:27:27 +00:00
|
|
|
<h4 class="modal-title"><?= e(trans('backend::lang.form.concurrency_file_changed_title')) ?></h4>
|
2014-05-14 13:24:20 +00:00
|
|
|
</div>
|
|
|
|
|
<div class="modal-body">
|
2015-02-14 06:27:27 +00:00
|
|
|
<p><?= e(trans('backend::lang.form.concurrency_file_changed_description')) ?></p>
|
2014-05-14 13:24:20 +00:00
|
|
|
</div>
|
|
|
|
|
<div class="modal-footer">
|
|
|
|
|
<button
|
|
|
|
|
type="submit"
|
|
|
|
|
data-action="reload"
|
|
|
|
|
class="btn btn-primary">
|
2015-12-14 17:21:56 +00:00
|
|
|
<?= e(trans('backend::lang.form.reload')) ?>
|
2014-05-14 13:24:20 +00:00
|
|
|
</button>
|
|
|
|
|
<button
|
|
|
|
|
type="submit"
|
|
|
|
|
data-action="save"
|
|
|
|
|
class="btn btn-primary">
|
2015-12-14 17:21:56 +00:00
|
|
|
<?= e(trans('backend::lang.form.save')) ?>
|
2014-05-14 13:24:20 +00:00
|
|
|
</button>
|
|
|
|
|
<button
|
|
|
|
|
type="button"
|
|
|
|
|
class="btn btn-default"
|
|
|
|
|
data-dismiss="popup">
|
2015-12-14 17:21:56 +00:00
|
|
|
<?= e(trans('backend::lang.form.cancel')) ?>
|
2014-05-14 13:24:20 +00:00
|
|
|
</button>
|
|
|
|
|
</div>
|
2015-02-03 04:55:21 +00:00
|
|
|
<?= Form::close() ?>
|