To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / plugins / redmine_bibliography / app / views / publications / autocomplete_for_author.html.erb @ 1284:3ce07a57ce68

History | View | Annotate | Download (290 Bytes)

1 1283:006057cf8f16 luis
<%= raw @results.map {|result| {
2
      'id' => result.id,
3
      'label' => "#{result.name} (#{result.mail.partition('@')[2]})",
4
      'value' => result.name,
5 1284:3ce07a57ce68 luis
      'type' => result.class.name,
6
      'institution' => result.institution,
7
      'email' => result.mail,
8 1283:006057cf8f16 luis
      }
9
    }.to_json
10 1284:3ce07a57ce68 luis
%>