30 lines
562 B
Plaintext
30 lines
562 B
Plaintext
<p id="notice"><%= notice %></p>
|
|
|
|
<p>
|
|
<h2><%= @extension.title %></h2>
|
|
</p>
|
|
|
|
<p>
|
|
<strong>Author: </strong>
|
|
<%= @extension.author %>
|
|
</p>
|
|
|
|
<p>
|
|
<strong>Version: </strong>
|
|
<%= @extension.version %>
|
|
</p>
|
|
|
|
<p>
|
|
<strong>Description: </strong>
|
|
<%= @extension.description.html_safe %>
|
|
</p>
|
|
<br/>
|
|
<p>
|
|
<strong>Preview: </strong><br/>
|
|
<%=image_tag @extension.preview, :width => 600, :height => 300 %>
|
|
</p>
|
|
|
|
<%if user_signed_in? %>
|
|
<%= link_to 'Edit', edit_extension_path(@extension) %> |
|
|
<%= link_to 'Back', extensions_path %>
|
|
<% end %> |