里程碑,版本库table宽度限制
This commit is contained in:
parent
e3fc304d35
commit
e035316cc7
|
@ -34,16 +34,16 @@
|
||||||
<table class="sy_new_table clear mb15" cellpadding="0" cellspacing="0">
|
<table class="sy_new_table clear mb15" cellpadding="0" cellspacing="0">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="w150 hidden">版本库名</th>
|
<th class="w130 pl10 pr10 hidden fl">版本库名</th>
|
||||||
<th class="w100 hidden">管理系统</th>
|
<th class="w90 pr10 hidden fl">管理系统</th>
|
||||||
<th class="w536 hidden">库路径</th>
|
<th class="w536 hidden fl">库路径</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="w150 hidden"><%= @gitlab_repository.identifier %></th>
|
<th class="w130 pl10 pr10 hidden fl"><%= @gitlab_repository.identifier %></th>
|
||||||
<th class="w100 hidden">Git</th>
|
<th class="w90 pr10 hidden fl">Git</th>
|
||||||
<th class="w536 hidden db"><%=h @repos_url %></th>
|
<th class="w536 hidden fl"><%=h @repos_url %></th>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|
|
@ -11,23 +11,23 @@
|
||||||
<table class="sy_new_table clear mb15" cellpadding="0" cellspacing="0">
|
<table class="sy_new_table clear mb15" cellpadding="0" cellspacing="0">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>名称</th>
|
<th class="fl" style="width:156px;">名称</th>
|
||||||
<th>结束日期</th>
|
<th class="w80 fl">结束日期</th>
|
||||||
<th>描述</th>
|
<th class="w350 fl">描述</th>
|
||||||
<th>状态</th>
|
<th class="w50 fl">状态</th>
|
||||||
<th >操作</th>
|
<th class="w150 fl">操作</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<% @project.shared_versions.each do |version| %>
|
<% @project.shared_versions.each do |version| %>
|
||||||
<tr>
|
<tr>
|
||||||
<th>
|
<th class="fl hidden" style="width:156px;">
|
||||||
<a><%= 'shared' if version.project != @project %> <%= link_to_version version %></a>
|
<%= link_to version.name, project_versions_path(version), :class => "c_blue02" %>
|
||||||
</th>
|
</th>
|
||||||
<th><%= format_date(version.effective_date) %></th>
|
<th class="fl w80"><%= format_date(version.effective_date) %></th>
|
||||||
<th><%=h version.description %></th>
|
<th class="fl w350 hidden"><%=h version.description %></th>
|
||||||
<th><%= l("version_status_#{version.status}") %></th>
|
<th class="fl w50"><%= l("version_status_#{version.status}") %></th>
|
||||||
<th>
|
<th class="fl w150">
|
||||||
<% if version.project == @project && User.current.allowed_to?(:manage_versions, @project) %>
|
<% if version.project == @project && User.current.allowed_to?(:manage_versions, @project) %>
|
||||||
<%= link_to l(:button_edit), edit_version_path(version, :is_setting => true), :class => 'sy_btn_blue mr5', :remote => true %>
|
<%= link_to l(:button_edit), edit_version_path(version, :is_setting => true), :class => 'sy_btn_blue mr5', :remote => true %>
|
||||||
<%= delete_link_version version_path(version, :is_setting => true), :class=>"sy_btn_grey mr5", :remote => true %>
|
<%= delete_link_version version_path(version, :is_setting => true), :class=>"sy_btn_grey mr5", :remote => true %>
|
||||||
|
|
|
@ -271,7 +271,6 @@ h4{ font-size:14px;}/*color:#3b3b3b;*/
|
||||||
.w607 {width:607px;}
|
.w607 {width:607px;}
|
||||||
.w664{ width:664px;}
|
.w664{ width:664px;}
|
||||||
.w683{ width:683px;}
|
.w683{ width:683px;}
|
||||||
.w350{ width:350px;}
|
|
||||||
.w610{ width:610px;}
|
.w610{ width:610px;}
|
||||||
.w600{ width:600px !important;}
|
.w600{ width:600px !important;}
|
||||||
.w603{ width:603px !important;}
|
.w603{ width:603px !important;}
|
||||||
|
|
Loading…
Reference in New Issue