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 @ 1407:00a51e442fe9

History | View | Annotate | Download (398 Bytes)

1 1394:0f918e37e1d6 luis
<%= raw @results.map { |result|
2
    {
3 1393:67abd7b08753 luis
    'label' => result.name,
4 1289:7fa299909144 luis
    'value' => result.name,
5
    'search_author_class' => result.class.name,
6
    'search_author_id' => result.id,
7
    'name' => result.name,
8
    'institution' => result.institution,
9 1407:00a51e442fe9 luis
    'email' => result.mail,
10
    'authorship_link' => " Keep associated with #{render_authorship_link(result.class.name, result.id)}"
11 1289:7fa299909144 luis
    }
12
}.to_json %>