tiss2go/app/views/crawlers/theses_crawler/show_detail.html.erb
2020-06-04 20:14:45 +02:00

16 lines
674 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 :partial => "crawlers/personal_annotations" %>
<% end %>