配置中最新里程碑放置最前面
This commit is contained in:
parent
018b982f7f
commit
8848bfb06f
|
@ -20,7 +20,7 @@
|
|||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<% @project.shared_versions.each do |version| %>
|
||||
<% @project.shared_versions.reverse.each do |version| %>
|
||||
<tr>
|
||||
<th class="fl hidden" style="width:156px;" title="<%= version.name %>" >
|
||||
<%= link_to version.name, version_path(version), :class => "c_blue02" %>
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<div id="muban_popup_box" style="width:820px;">
|
||||
<div id="muban_popup_box" style="width:800px;">
|
||||
<div class="muban_popup_top">
|
||||
<h3 class="fl">新建里程碑</h3>
|
||||
<a href="javascript:void(0);" class="muban_icons_close fr" onclick="hideModal()"></a>
|
||||
|
@ -17,22 +17,20 @@
|
|||
<p class="c_orange ml100" style="display: none" id="pupub_project_setting_version_title">标题不能为空</p>
|
||||
</li>
|
||||
<li class="mb10 clear">
|
||||
<label> 描述 : </label>
|
||||
<label class="ml5"> 描述 : </label>
|
||||
<%= f.text_field :description, :maxlength => 60, :class=>"w650", :style=>"height:28px;", :no_label => true %>
|
||||
</li>
|
||||
<!--<li class="mb10 clear">-->
|
||||
<!--<label class=" fl"> 结束日期 : </label>-->
|
||||
<!--<%#= f.text_field :effective_date, :size => 10, :readonly => true, :class => "issues_calendar_input fl", :id => "version_effective_date_create", :placeholder=>"结束日期", :style=>"height:28px;", :no_label => true %>-->
|
||||
<!--<%#= calendar_for('version_effective_date_create') %>-->
|
||||
<!--<!–<input type="text" placeholder="结束日期" class="issues_calendar_input fl ">–>-->
|
||||
<!--<!–<a href="" class="issues_data_img fl"></a>–>-->
|
||||
<!--</li>-->
|
||||
<li class="mb10 clear">
|
||||
<label> 状态 : </label>
|
||||
<label class=" fl ml5"> 日期 : </label>
|
||||
<%= f.text_field :effective_date, :size => 10, :readonly => true, :class => "issues_calendar_input fl ml3", :id => "version_name", :placeholder=>"结束日期", :style=>"height:28px;", :no_label => true %>
|
||||
<%= calendar_for('version_name') %>
|
||||
</li>
|
||||
<li class="mb10 clear">
|
||||
<label class="ml5"> 状态 : </label>
|
||||
<%= f.select :status, Version::VERSION_STATUSES.collect {|s| [l("version_status_#{s}"), s]},{:no_label => true },{:style=>"height:28px;"} %>
|
||||
</li>
|
||||
</ul>
|
||||
<a href="javascript:void(0);" class="fr sy_btn_grey mr45" onclick="hideModal()">取消</a>
|
||||
<a href="javascript:void(0);" class="fr sy_btn_grey mr80" onclick="hideModal()">取消</a>
|
||||
<a href="javascript:void(0);" class="fr sy_btn_blue mr5" onclick="popub_project_version_commit();">保存</a>
|
||||
<% end %>
|
||||
</div>
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
<script type="text/javascript" src="/javascripts/i18n/jquery.ui.datepicker-en.js"></script>
|
||||
<!--里程碑列表开始-->
|
||||
<div class="new_roadmap_conbox mb10" >
|
||||
<div class="new_roadmap_navbox clear">
|
||||
|
|
Loading…
Reference in New Issue