월급은 쬐금 주면서
회사에서 하는 일이 좀 많다
모 그래도 운영은 안하니 다른 고생하는 분들에 비하면
쬐금 일하긴 하지만 ....
그중 요즘에 주로 하는 Redmine 시작 페이지 변경 작업에 대해서 쬐금 적어 본다 ~
bitnami_redmine 윈도우판 기준이다
팀에서 원하는 시작 페이지 모습은 대충
이런거 같았다
보면 알겠지만 Versions에 있는 디자인을 좀 가져 오면 된다.
apps\redmine\htdocs\app\views\projects\show.html.erb 를 열어서
<% if User.current.allowed_to?(:view_issues, @project) %> 이거 찾아서
아래에다 대충 이렇게 넣어 준다.
<div class="issues box">
<table class="issue-report-complete">
<h3>버전별 달성률</h3>
<tr>
<td>
<% @versions.each do |version| %>
<header>
<h4 class="version"><%= link_to_version version, :name => version_anchor(version) %></h4>
</header>
<%= render :partial => 'projects/overview', :locals => {:version => version} %>
<%end%>
</td>
</tr>
</table>
</div>
html도 style도 조금 수정해야 하니 class="issue-report-complete" 이런식으로 class도 잡았다
apps\redmine\htdocs\public\stylesheets\application.css 열어서
/***** Tables *****/
table.issue-report-complete { border: 1px solid #e4e4e4; border-collapse: collapse; width: 100%; margin-bottom: 4px; }
table.issue-report-complete th { background-color:#EEEEEE; padding: 4px; padding-left:8px; white-space:nowrap; text-align: center;}
table.issue-report-complete th.number { width: 20%; background-color:#EEEEEE; padding: 4px; padding-left:8px; white-space:nowrap; text-align: center;}
table.issue-report-complete td {vertical-align:center; padding-left:8px; text-align:left; width: 20%;}
table.issue-report-complete td.progress {vertical-align:center; padding-left:8px; text-align:center; }
table.issue-report-complete th.title { width: 25%; background-color:#EEEEEE; padding: 4px; padding-left:8px; white-space:nowrap; text-align: center;}
/***** Tables *****/
table.version-issue { border: 1px solid #e4e4e4; border-collapse: collapse; width: 100%; margin-bottom: 5px; margin-top: 5px; }
table.version-issue td {vertical-align:center; padding-left:8px; padding-top:4px; text-align:left; width: 3em;}
이정도 넣어 주고
apps\redmine\htdocs\app\views\projects\_overview.html.erb 새로 작성한다.
<% if version.completed? %>
<p><%= format_date(version.effective_date) %></p>
<% elsif version.effective_date %>
<p><strong><%= due_date_distance_in_words(version.effective_date) %></strong> (<%= format_date(version.effective_date) %>)</p>
<% end %>
<p><%=h version.description %></p>
<% if version.custom_field_values.any? %>
<ul>
<% render_custom_field_values(version) do |custom_field, formatted| %>
<li><span class="label"><%= custom_field.name %>:</span> <%= formatted %></li>
<% end %>
</ul>
<% end %>
<% if version.issues_count > 0 %>
<%= progress_bar([version.closed_percent, version.completed_percent],
:width => '90%', :legend => ('%0.0f%' % version.completed_percent)) %>
<p class="progress-info">
<%= link_to(l(:label_x_issues, :count => version.issues_count),
version_filtered_issues_path(version, :status_id => '*')) %>
(<%= link_to_if(version.closed_issues_count > 0,
l(:label_x_closed_issues_abbr, :count => version.closed_issues_count),
version_filtered_issues_path(version, :status_id => 'c')) %>
—
<%= link_to_if(version.open_issues_count > 0,
l(:label_x_open_issues_abbr, :count => version.open_issues_count),
version_filtered_issues_path(version, :status_id => 'o')) %>)
</p>
<div id="status_by">
<%= render_issue_status_by(version, params[:status_by]) %>
</div>
<% else %>
<p class="progress-info"><%= l(:label_roadmap_no_issues) %></p>
<% end %>
'글 > 잡 지식' 카테고리의 다른 글
CentOS 6.x에 mono 설치 (0) | 2016.03.10 |
---|---|
Redmine Projects 페이지 변경 (0) | 2016.02.19 |
WinSCP Upload 스크립터 (0) | 2016.01.27 |
Visual Studio 2012 - Macros for Build Commands and Properties (0) | 2012.12.10 |
robocopy (폴더 싱크 맞추기) (0) | 2012.07.17 |