socialforge/app/views/shixuns/_settings_edit.html

27 lines
1.2 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<div class="panel-form task-setting-tab">
<ul>
<li class="clearfix">
<label class="panel-form-label fl"><span class="c_red mr5">*</span>名称:</label>
<input type="text" class="panel-form-width-690 panel-form-height-30 fl" placeholder="HelloworldJava入门实训项目" value="<%= @shixun.name %>"/>
</li>
<li class="clearfix">
<label class="panel-form-label fl">预备知识:</label>
<textarea class="panel-form-width-690 panel-form-height-150 fl"><%= @shixun.description %></textarea>
</li>
<li class="clearfix">
<label class="panel-form-label fl">默认分支:</label>
<select class="panel-form-height-30 fl mt5">
<option>master</option>
</select>
</li>
<li class="clearfix">
<label class="panel-form-label fl">公开:</label>
<input type="checkbox" class="fl mt15 mr10" />
<span class="fl">(选中为公开项目,不选中为私有项目;私有项目仅自己可见。)</span>
</li>
<li class="clearfix">
<a href="#" class="task-btn task-btn-green fr mr10">保存</a>
</li>
</ul>
</div>