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 >
< h4 class = "modal-title" > File was changed< / h4 >
< / div >
< div class = "modal-body" >
2014-06-06 11:38:34 +00:00
< p > The file you're editing has been changed on disk by another user. You can either reload the file and lose your changes or override the file on the disk.< / p >
2014-05-14 13:24:20 +00:00
< / div >
< div class = "modal-footer" >
< button
type="submit"
data-action="reload"
class="btn btn-primary">
Reload
< / button >
< button
type="submit"
data-action="save"
class="btn btn-primary">
Save
< / button >
< button
type="button"
class="btn btn-default"
data-dismiss="popup">
Cancel
< / button >
< / div >
<?= Form::close() ?>