diff --git a/static/js/my.js b/static/js/my.js index f97b2f5..bc038fc 100644 --- a/static/js/my.js +++ b/static/js/my.js @@ -50,7 +50,7 @@ $(document).ajaxError(function (ev, jqXHR, ajaxSettings, thrownError) { $.getJSON(settings.url, {'s': this.value}, function (r) { selectul.empty(); r.forEach(function (o) { - var li = $('
  • ' + o.fio + '
  • '); + var li = $('
  • ' + o.name + ": " + o.fio + '
  • '); selectul.append(li); li.on('click', selectajax_click) });