336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.

월급은 쬐금 주면서 


회사에서 하는 일이 좀 많다


모 그래도 운영은 안하니 다른 고생하는 분들에 비하면 


쬐금 일하긴 하지만 ....


그중 요즘에 주로 하는 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 => '*')) %>

      &nbsp;

      (<%= 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')) %>

      &#8212;

      <%= 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>

&nbsp;

<div id="status_by">

<%= render_issue_status_by(version, params[:status_by]) %>

</div>

&nbsp;

<% else %>

    <p class="progress-info"><%= l(:label_roadmap_no_issues) %></p>

<% end %>


요래 작성했으면

시작페이지가 변경 되는데 글자가 가운데 정렬일 것이다 

\apps\redmine\htdocs\app\views\versions\_issue_counts.html.erb 열어서 

<%= form_tag({}, :id => "status_by_form") do -%>
<fieldset>
<legend>
<%= l(:label_issues_by,
       select_tag('status_by',
                   status_by_options_for_select(criteria),
                   :id => 'status_by_select',
                   :data => {:remote => true, :method => 'post', :url => status_by_version_path(version)})).html_safe %>
</legend>
<% if counts.empty? %>
    <p><em><%= l(:label_no_data) %></em></p>
<% else %>
    <table class="version-issue">
    <% counts.each do |count| %>
    <tr>
        <td>
          <% if count[:group] -%>
            <%= link_to(count[:group], project_issues_path(version.project, :set_filter => 1, :status_id => '*', :fixed_version_id => version, "#{criteria}_id" => count[:group])) %>
          <% else -%>
            <%= link_to(l(:label_none), project_issues_path(version.project, :set_filter => 1, :status_id => '*', :fixed_version_id => version, "#{criteria}_id" => "!*")) %>
          <% end %>
        </td>
        <td>
            <%= progress_bar((count[:closed].to_f / count[:total])*100,
                  :legend => "#{count[:closed]}/#{count[:total]}",
                  :width => "#{(count[:total].to_f / max * 200).floor}px;") %>
        </td>
    </tr>
    <% end %>
    </table>
<% end %>
</fieldset>
<% end %>

요런식으로 변경해 준다 아까 입력한 class 적용 시키는 부분이다 

요거 하는데 7시간 걸림 

개인적으로 레일즈가 node보다 싫다~ 





' > 잡 지식' 카테고리의 다른 글

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

+ Recent posts