##// END OF EJS Templates
Added a 'Assignable' boolean on Role model....
Added a 'Assignable' boolean on Role model. If unchecked, issues can not be assigned to users having this role. git-svn-id: http://redmine.rubyforge.org/svn/trunk@649 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r643:446889b3f0cb
r643:446889b3f0cb
Show More
add_issue.rhtml
51 lines | 2.5 KiB | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
Localization plugin removed (replaced with GLoc)...
r12 <h2><%=l(:label_issue_new)%>: <%= @tracker.name %></h2>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330
Jean-Philippe Lang
tables and forms redesign,...
r19 <% labelled_tabular_form_for :issue, @issue, :url => {:action => 'add_issue'}, :html => {:multipart => true} do |f| %>
Jean-Philippe Lang
Initial commit...
r2 <%= error_messages_for 'issue' %>
Jean-Philippe Lang
0.3 unstable...
r10 <div class="box">
Jean-Philippe Lang
tables and forms redesign,...
r19 <!--[form:issue]-->
Jean-Philippe Lang
0.3 unstable...
r10 <%= hidden_field_tag 'tracker_id', @tracker.id %>
Jean-Philippe Lang
* new report: project activity...
r42
<div class="splitcontentleft">
Jean-Philippe Lang
Feature 9784 Set status when raising issue....
r404 <p><%= f.select :status_id, (@allowed_statuses.collect {|p| [p.name, p.id]}), :required => true %></p>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <p><%= f.select :priority_id, (@priorities.collect {|p| [p.name, p.id]}), :required => true %></p>
Jean-Philippe Lang
Added a 'Assignable' boolean on Role model....
r643 <p><%= f.select :assigned_to_id, (@issue.assignable_users.collect {|m| [m.name, m.id]}), :include_blank => true %></p>
Jean-Philippe Lang
Added a link to add a new category when creating or editing an issue....
r642 <p><%= f.select :category_id, (@project.issue_categories.collect {|c| [c.name, c.id]}), :include_blank => true %>
<%= prompt_to_remote(l(:label_issue_category_new),
l(:label_issue_category_new), 'category[name]',
{:controller => 'projects', :action => 'add_issue_category', :id => @project},
:class => 'small') if authorize_for('projects', 'add_issue_category') %></p>
Jean-Philippe Lang
* new report: project activity...
r42 </div>
<div class="splitcontentright">
<p><%= f.text_field :start_date, :size => 10 %><%= calendar_for('issue_start_date') %></p>
<p><%= f.text_field :due_date, :size => 10 %><%= calendar_for('issue_due_date') %></p>
<p><%= f.select :done_ratio, ((0..10).to_a.collect {|r| ["#{r*10} %", r*10] }) %></p>
</div>
<div class="clear">
Jean-Philippe Lang
tables and forms redesign,...
r19 <p><%= f.text_field :subject, :size => 80, :required => true %></p>
Jean-Philippe Lang
width of all wiki content textareas set to 99.5%...
r326 <p><%= f.text_area :description, :cols => 60, :rows => 10, :required => true, :class => 'wiki-edit' %></p>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330
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
added svn:eol-style native property on /app files...
r330 <% end %>
Jean-Philippe Lang
Fixed: versions not sorted correctly in drop down lists....
r613 <p><%= f.select :fixed_version_id, (@project.versions.sort.collect {|v| [v.name, v.id]}), { :include_blank => true } %></p>
Jean-Philippe Lang
fixed #9403 Include "Fixed version" when creating a new issue...
r353
Jean-Philippe Lang
* all icons replaced (new icons are based on GPL icon set: "KDE Crystal Diamond 2.5" -by paolino- and "kNeu! Alpha v0.1" -by Pablo Fabregat-)...
r154 <p id="attachments_p"><label for="attachment_file"><%=l(:label_attachment)%>
<%= image_to_function "add.png", "addFileField();return false" %></label>
Jean-Philippe Lang
replaced deprecated human_size by number_to_human_size...
r182 <%= file_field_tag 'attachments[]', :size => 30 %> <em>(<%= l(:label_max_size) %>: <%= number_to_human_size(Setting.attachment_max_size.to_i.kilobytes) %>)</em></p>
Jean-Philippe Lang
0.3 unstable...
r10
Jean-Philippe Lang
* new report: project activity...
r42 </div>
<!--[eoform:issue]-->
</div>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <%= submit_tag l(:button_create) %>
Jean-Philippe Lang
* new report: project activity...
r42 <% end %>
Jean-Philippe Lang
Slight views refactoring...
r545 <%= wikitoolbar_for 'issue_description' %>
Jean-Philippe Lang
calendar javascripts and stylesheets removed from base layout. they're now only added to html header when needed....
r148
<% content_for :header_tags do %>
<%= javascript_include_tag 'calendar/calendar' %>
<%= javascript_include_tag "calendar/lang/calendar-#{current_language}.js" %>
<%= javascript_include_tag 'calendar/calendar-setup' %>
<%= stylesheet_link_tag 'calendar' %>
Jean-Philippe Lang
tables and forms redesign,...
r19 <% end %>