Actualizado plugin Redmine Questions 1.0.0 light
This commit is contained in:
parent
27e60f8ec1
commit
5d7889f1c9
140 changed files with 5342 additions and 1430 deletions
|
@ -0,0 +1,23 @@
|
|||
<div class="question<%= " votable" if question_item.allow_voting? %> div-table" id="question_<%= question_item.id %>">
|
||||
<a href="#<%= question_item.id %>" class="wiki-anchor"></a>
|
||||
<% if question_item.allow_voting? && User.current.allowed_to?(:vote_questions, @project) %>
|
||||
<div class="vote">
|
||||
<%= render :partial => 'questions_votes/question_item_vote', :locals => {:question_item => question_item} %>
|
||||
</div>
|
||||
<% end %>
|
||||
|
||||
<div class="question-container div-table-cell">
|
||||
<%= avatar(question_item.author, :size => "32") %>
|
||||
<p class="author">
|
||||
<%= link_to_user question_item.author %><br>
|
||||
<%= l(:label_questions_added_time, :value => time_tag(question_item.created_on)).html_safe %>
|
||||
</p>
|
||||
<div class="wiki">
|
||||
<%= textilizable(question_item, :content) %>
|
||||
</div>
|
||||
|
||||
<%= link_to_attachments question_item, :author => false %>
|
||||
|
||||
<%= render :partial => 'questions_comments/comments_container', :locals => { :question_item => question_item } %>
|
||||
</div>
|
||||
</div>
|
Loading…
Add table
Add a link
Reference in a new issue