21 lines
699 B
Plaintext
21 lines
699 B
Plaintext
<% if @project != nil %>
|
|
<h2>Project: <%= @project['titleDe'] %></h2>
|
|
<%= button_to "PRINT", '#', onclick: "print()" %>
|
|
|
|
<h5><%= @project['contractBegin'] %> - <%= @project['contractEnd'] %></h5>
|
|
<%= button_to 'Add to favorites', action: :add_to_fav, id: @id, title: @project['titleDe'] %>
|
|
<% if @project['abstractDe'] != nil %>
|
|
<h4>Beschreibung</h4>
|
|
<p><%= raw @project['abstractDe'] %></p>
|
|
<% else %>
|
|
<% if @project['abstractEn'] != nil %>
|
|
<h4>Beschreibung</h4>
|
|
<p><%= raw @project['abstractEn'] %></p>
|
|
<% end %>
|
|
<% end %>
|
|
|
|
<%= render_personal_annotations @id, @personal_annotation %>
|
|
<%= render_personal_keywords @id, @personal_keyword %>
|
|
|
|
<% end %>
|