##// END OF EJS Templates
contextual links redesign...
contextual links redesign git-svn-id: http://redmine.rubyforge.org/svn/trunk@93 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r65:96f83cc8f0f0
r90:236c735d08c0
Show More
_form.rhtml
26 lines | 1002 B | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
Initial commit...
r2 <%= error_messages_for 'project' %>
Jean-Philippe Lang
0.3 unstable...
r10 <div class="box">
Jean-Philippe Lang
Initial commit...
r2 <!--[form:project]-->
Jean-Philippe Lang
tables and forms redesign,...
r19 <p><%= f.text_field :name, :required => true %></p>
Jean-Philippe Lang
Initial commit...
r2
Jean-Philippe Lang
* new report: project activity...
r42 <% if admin_loggedin? and !@root_projects.empty? %>
Jean-Philippe Lang
tables and forms redesign,...
r19 <p><%= f.select :parent_id, (@root_projects.collect {|p| [p.name, p.id]}), { :include_blank => true } %></p>
Jean-Philippe Lang
v0.2.0...
r5 <% end %>
Jean-Philippe Lang
tables and forms redesign,...
r19 <p><%= f.text_area :description, :required => true, :cols => 60, :rows => 3 %></p>
<p><%= f.text_field :homepage, :size => 40 %></p>
<p><%= f.check_box :is_public %></p>
Jean-Philippe Lang
0.3 unstable...
r10
Jean-Philippe Lang
custom field tags...
r18 <% for @custom_value in @custom_values %>
<p><%= custom_field_tag_with_label @custom_value %></p>
Jean-Philippe Lang
0.3 unstable...
r10 <% end %>
Jean-Philippe Lang
* new report: project activity...
r42
<% unless @custom_fields.empty? %>
<p><label><%=l(:label_custom_field_plural)%></label>
Jean-Philippe Lang
tables and forms redesign,...
r19 <% for custom_field in @custom_fields %>
Jean-Philippe Lang
* new report: project activity...
r42 <%= check_box_tag "custom_field_ids[]", custom_field.id, ((@project.custom_fields.include? custom_field) or custom_field.is_for_all?), (custom_field.is_for_all? ? {:disabled => "disabled"} : {}) %>
Jean-Philippe Lang
tables and forms redesign,...
r19 <%= custom_field.name %>
Jean-Philippe Lang
* new report: project activity...
r42 <% end %></p>
<% end %>
Jean-Philippe Lang
tables and forms redesign,...
r19 <!--[eoform:project]-->
Jean-Philippe Lang
0.3 unstable...
r10 </div>