tiss2go/app/views/crawlers/theses_crawler/show_detail.html.erb

16 lines
677 B
Plaintext

<% if @thesis != nil %>
<h2><%= @thesis['title']['de'] %></h2>
<h5><%= @thesis['thesisType'] %>, <%= @thesis['instituteCode'] %> <%= @thesis['instituteName']['de'] %></h5>
<%= button_to 'Add to favorites', action: :add_to_fav, id: @id, title: @thesis['title']['de'] %>
<% if @thesis['advisor'] != nil %>
<h4>Advisor</h4>
<p><%= @thesis['advisor']['familyName'] %> <%= @thesis['advisor']['givenName'] %></p>
<% end %>
<% if @thesis['assistant'] != nil %>
<h4>Assistant</h4>
<p><%= @thesis['assistant']['familyName'] %> <%= @thesis['assistant']['givenName'] %></p>
<% end %>
<%= render_personal_annotations @id, @personal_annotation %>
<% end %>