.row

.col-xs-12
  .lv-item.p-20.bgm-gray.m-b-5
    .media
      .pull-left
        i.zmdi.zmdi-hc-3x.zmdi-alert-octagon.c-white
      .media-body
        .lv-title.c-white La página que intentas acceder no existe
        small.lv-small.c-white En caso de que hayas llegado a esta dirección mediante un link dentro de la aplicación, notifica a administración.

  .pull-right
    a.btn.bgm-red.waves-effect.notify type="button" onclick="notify_error();this.onclick=''" Notificar a administración

javascript:

function notify_error() {
  var title = 'Page not found';
  var label = 'error';
  var message = window.location.href;
  $.ajax({
    url: '/notification',
    type: 'POST',
    data: { title : title, message : message, label : label, link : window.location.href },
    complete: function(result) {
      $(".notify").replaceWith('<a class="btn bgm-green" disabled="" type="button">Notificado</a>')
    }
  });
}