🚀 Sólo código modificado para instalar con docker
This commit is contained in:
parent
41d93da720
commit
de8d940598
2217 changed files with 1 additions and 278373 deletions
|
@ -1,40 +0,0 @@
|
|||
<%
|
||||
issue = tab[:locals][:issue]
|
||||
journals = tab[:locals][:journals]
|
||||
%>
|
||||
|
||||
<% reply_links = issue.notes_addable? -%>
|
||||
<% for journal in journals %>
|
||||
<div id="change-<%= journal.id %>" class="<%= journal.css_classes %>">
|
||||
<div id="note-<%= journal.indice %>">
|
||||
<div class="contextual">
|
||||
<span class="journal-actions"><%= render_journal_actions(issue, journal, :reply_links => reply_links) %></span>
|
||||
<a href="#note-<%= journal.indice %>" class="journal-link">#<%= journal.indice %></a>
|
||||
</div>
|
||||
<h4 class='note-header'>
|
||||
<%= avatar(journal.user) %>
|
||||
<%= authoring journal.created_on, journal.user, :label => :label_updated_time_by %>
|
||||
<%= render_private_notes_indicator(journal) %>
|
||||
</h4>
|
||||
|
||||
<% if journal.details.any? %>
|
||||
<ul class="details">
|
||||
<% details_to_strings(journal.visible_details).each do |string| %>
|
||||
<li><%= string %></li>
|
||||
<% end %>
|
||||
</ul>
|
||||
<% if Setting.thumbnails_enabled? && (thumbnail_attachments = journal_thumbnail_attachments(journal)).any? %>
|
||||
<div class="thumbnails">
|
||||
<% thumbnail_attachments.each do |attachment| %>
|
||||
<div><%= thumbnail_tag(attachment) %></div>
|
||||
<% end %>
|
||||
</div>
|
||||
<% end %>
|
||||
<% end %>
|
||||
<%= render_notes(issue, journal, :reply_links => reply_links) unless journal.notes.blank? %>
|
||||
</div>
|
||||
</div>
|
||||
<%= call_hook(:view_issues_history_journal_bottom, { :journal => journal }) %>
|
||||
<% end %>
|
||||
|
||||
<% heads_for_wiki_formatter if User.current.allowed_to?(:edit_issue_notes, issue.project) || User.current.allowed_to?(:edit_own_issue_notes, issue.project) %>
|
|
@ -1,28 +0,0 @@
|
|||
<% for time_entry in time_entries%>
|
||||
<div id="time-entry-<%= time_entry.id %>" class="time_entry journal">
|
||||
<% if time_entry.editable_by?(User.current) -%>
|
||||
<div class="contextual">
|
||||
<%= link_to l(:button_edit), edit_time_entry_path(time_entry),
|
||||
:title => l(:button_edit),
|
||||
:class => 'icon-only icon-edit' %>
|
||||
<%= link_to l(:button_delete), time_entry_path(time_entry),
|
||||
:data => {:confirm => l(:text_are_you_sure)},
|
||||
:method => :delete,
|
||||
:title => l(:button_delete),
|
||||
:class => 'icon-only icon-del' %>
|
||||
</div>
|
||||
<% end -%>
|
||||
<h4>
|
||||
<%= avatar(time_entry.user, :size => "24") %>
|
||||
<%= authoring time_entry.created_on, time_entry.user, :label => :label_added_time_by %>
|
||||
</h4>
|
||||
<ul class="details">
|
||||
<li>
|
||||
<strong><%= l(:label_time_entry_plural) %></strong>:
|
||||
<%= l_hours_short time_entry.hours %>
|
||||
</li>
|
||||
</ul>
|
||||
<p><%= time_entry.comments %></p>
|
||||
</div>
|
||||
<%= call_hook(:view_issues_history_time_entry_bottom, { :time_entry => time_entry }) %>
|
||||
<% end %>
|
Loading…
Add table
Add a link
Reference in a new issue