##// END OF EJS Templates
Code cleanup: renamed variables in User#allowed_to? with explicit names...
Code cleanup: renamed variables in User#allowed_to? with explicit names git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4234 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r3796:07cd12978e52
r4120:c43ef6e7696e
Show More
_form.rhtml
49 lines | 1.9 KiB | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
Initial commit...
r2 <%= error_messages_for 'project' %>
Jean-Philippe Lang
svn browser merged in trunk...
r103
Jean-Philippe Lang
0.3 unstable...
r10 <div class="box">
Jean-Philippe Lang
Initial commit...
r2 <!--[form:project]-->
Eric Davis
Add maxlength attributes to some Project fields. #4896...
r3796 <p><%= f.text_field :name, :required => true, :maxlength => 30 %><br /><em><%= l(:text_caracters_maximum, 30) %></em></p>
Jean-Philippe Lang
Initial commit...
r2
Jean-Philippe Lang
Adds a 'Add subprojects' permission....
r3124 <% unless @project.allowed_parents.compact.empty? %>
Eric Davis
Fixed some labels to be more accessible....
r3222 <p><%= label(:project, :parent_id, l(:field_parent)) %><%= parent_project_select_tag(@project) %></p>
Jean-Philippe Lang
v0.2.0...
r5 <% end %>
Jean-Philippe Lang
Unlimited and optional project description. The project list will show truncated descriptions only (the first fews lines)....
r1074 <p><%= f.text_area :description, :rows => 5, :class => 'wiki-edit' %></p>
Eric Davis
Add maxlength attributes to some Project fields. #4896...
r3796 <p><%= f.text_field :identifier, :required => true, :disabled => @project.identifier_frozen?, :maxlength => 20 %>
Jean-Philippe Lang
Unlimited and optional project description. The project list will show truncated descriptions only (the first fews lines)....
r1074 <% unless @project.identifier_frozen? %>
Jean-Philippe Lang
Set minimum identifier lenght to 1 (#3073)....
r2557 <br /><em><%= l(:text_length_between, :min => 1, :max => 20) %> <%= l(:text_project_identifier_info) %></em>
Jean-Philippe Lang
Unlimited and optional project description. The project list will show truncated descriptions only (the first fews lines)....
r1074 <% end %></p>
Jean-Philippe Lang
Change projects homepage limit to 255 chars (#663, #1095)....
r1443 <p><%= f.text_field :homepage, :size => 60 %></p>
Jean-Philippe Lang
tables and forms redesign,...
r19 <p><%= f.check_box :is_public %></p>
Jean-Philippe Lang
Textilized project descriptions on project list and home page....
r645 <%= wikitoolbar_for 'project_description' %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330
Jean-Philippe Lang
Custom fields refactoring: most of code moved from controllers to models (using new module ActsAsCustomizable)....
r1578 <% @project.custom_field_values.each do |value| %>
<p><%= custom_field_tag_with_label :project, value %></p>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <% end %>
Eric Davis
Added :view_projects_form plugin hook...
r1976 <%= call_hook(:view_projects_form, :project => @project, :form => f) %>
Jean-Philippe Lang
Added per-project tracker selection. Trackers can be selected on project settings....
r907 </div>
<% unless @trackers.empty? %>
<fieldset class="box"><legend><%=l(:label_tracker_plural)%></legend>
<% @trackers.each do |tracker| %>
<label class="floating">
<%= check_box_tag 'project[tracker_ids][]', tracker.id, @project.trackers.include?(tracker) %>
<%= tracker %>
</label>
<% end %>
<%= hidden_field_tag 'project[tracker_ids][]', '' %>
</fieldset>
<% end %>
Jean-Philippe Lang
* new report: project activity...
r42
Jean-Philippe Lang
Custom fields refactoring: most of code moved from controllers to models (using new module ActsAsCustomizable)....
r1578 <% unless @issue_custom_fields.empty? %>
Jean-Philippe Lang
Added per-project tracker selection. Trackers can be selected on project settings....
r907 <fieldset class="box"><legend><%=l(:label_custom_field_plural)%></legend>
Jean-Philippe Lang
Custom fields refactoring: most of code moved from controllers to models (using new module ActsAsCustomizable)....
r1578 <% @issue_custom_fields.each do |custom_field| %>
Jean-Philippe Lang
Added per-project tracker selection. Trackers can be selected on project settings....
r907 <label class="floating">
Jean-Philippe Lang
Custom fields refactoring: most of code moved from controllers to models (using new module ActsAsCustomizable)....
r1578 <%= check_box_tag 'project[issue_custom_field_ids][]', custom_field.id, (@project.all_issue_custom_fields.include? custom_field), (custom_field.is_for_all? ? {:disabled => "disabled"} : {}) %>
Jean-Philippe Lang
Added per-project tracker selection. Trackers can be selected on project settings....
r907 <%= custom_field.name %>
</label>
<% end %>
Jean-Philippe Lang
Custom fields refactoring: most of code moved from controllers to models (using new module ActsAsCustomizable)....
r1578 <%= hidden_field_tag 'project[issue_custom_field_ids][]', '' %>
Jean-Philippe Lang
Added per-project tracker selection. Trackers can be selected on project settings....
r907 </fieldset>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <% end %>
Jean-Philippe Lang
svn browser merged in trunk...
r103 <!--[eoform:project]-->