Nuevo plugin Redmine Glossary 0.9.2
This commit is contained in:
parent
5d298a7529
commit
693eb3ee50
72 changed files with 2962 additions and 0 deletions
19
plugins/redmine_glossary/app/views/glossary/_show_one.html.erb
Executable file
19
plugins/redmine_glossary/app/views/glossary/_show_one.html.erb
Executable file
|
@ -0,0 +1,19 @@
|
|||
|
||||
<% term = show_one %>
|
||||
<table class="term_items">
|
||||
<% for prm in @show_params %>
|
||||
<tr><th><%=h label_param(prm) %>:</th><td><%= term.value(prm) %></td></tr>
|
||||
<% end %>
|
||||
</table>
|
||||
<% unless (term.description.empty?) %>
|
||||
<strong><%=l(:field_description)%></strong>:
|
||||
<div class="wiki">
|
||||
<%= textilizable term, :description, :attachments => term.attachments %>
|
||||
</div>
|
||||
|
||||
<% if term.attachments.any? %>
|
||||
<%= (@is_index) ? "" : '<hr />' %>
|
||||
<%= link_to_attachments term %>
|
||||
<% end %>
|
||||
<% end %>
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue