##// END OF EJS Templates
Do not mass create API keys for existing users....
Do not mass create API keys for existing users. They will be created on the fly if needed, just like for new users. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3221 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r2925:dfd02040521b
r3107:edab0f0cbb85
Show More
index.rhtml
21 lines | 837 B | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
Activity enhancements:...
r1213 <div class="contextual">
Jean-Philippe Lang
Ability to allow non-admin users to create projects (#1007)....
r2651 <%= link_to(l(:label_project_new), {:controller => 'projects', :action => 'add'}, :class => 'icon icon-add') + ' |' if User.current.allowed_to?(:add_project, nil, :global => true) %>
Jean-Philippe Lang
Add view_issues permission (#3187)....
r2925 <%= link_to(l(:label_issue_view_all), { :controller => 'issues' }) + ' |' if User.current.allowed_to?(:view_issues, nil, :global => true) %>
Jean-Philippe Lang
Activity enhancements:...
r1213 <%= link_to l(:label_overall_activity), { :controller => 'projects', :action => 'activity' }%>
</div>
Jean-Philippe Lang
Projects menu item now shows the list of public projects and projects for which the user is a member (marked with a star)....
r457 <h2><%=l(:label_project_plural)%></h2>
Jean-Philippe Lang
Initial commit...
r2
Jean-Philippe Lang
Merged nested projects branch. Removes limit on subproject nesting (#594)....
r2302 <%= render_project_hierarchy(@projects)%>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330
Jean-Philippe Lang
Merged 0.6 branch into trunk....
r663 <% if User.current.logged? %>
Jean-Philippe Lang
Adds new projects atom feed (#1290)....
r1451 <p style="text-align:right;">
Jean-Philippe Lang
Merged nested projects branch. Removes limit on subproject nesting (#594)....
r2302 <span class="my-project"><%= l(:label_my_projects) %></span>
Jean-Philippe Lang
Adds new projects atom feed (#1290)....
r1451 </p>
Jean-Philippe Lang
Projects menu item now shows the list of public projects and projects for which the user is a member (marked with a star)....
r457 <% end %>
Jean-Philippe Lang
More detailed html title on several views....
r951
Jean-Philippe Lang
Adds an helper to render other formats download links....
r2331 <% other_formats_links do |f| %>
<%= f.link_to 'Atom', :url => {:key => User.current.rss_key} %>
<% end %>
Jean-Philippe Lang
Adds new projects atom feed (#1290)....
r1451
Jean-Philippe Lang
Slight improvements to the browser views....
r1019 <% html_title(l(:label_project_plural)) -%>