19 lines
795 B
Plaintext
19 lines
795 B
Plaintext
<% if @thesis != nil %>
|
|
<h2>Thesis: <%= @thesis['title']['de'] %></h2>
|
|
<%= button_to "PRINT", '#', onclick: "print()" %>
|
|
|
|
<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 %>
|
|
<%= render_personal_keywords @id, @personal_keyword %>
|
|
<% end %>
|