How to add a box in the overview ?
Added by Alice Etchegaray about 11 years ago
Hi everybody,
I would like to add a box under the member box into the project's overview which displays the identifier of the project.
How is it possible ?
Thanks for your help !
Replies (2)
RE: How to add a box in the overview ?
-
Added by Martin Denizet (redmine.org team member) about 11 years ago
Hi Alice,
You should be able to do that by implementing the view_welcome_index_left
or view_welcome_index_right
view hooks in a plugin.
Tell me if you need help to do so.
Cheers,
RE: How to add a box in the overview ?
-
Added by Alice Etchegaray about 11 years ago
Hi,
Finally, i modified the code into /app/views/projects/show.html.erb by adding this :
<div class="id box">
<h3 class="icon icon-projects">Identifiant du projet</h3>
<p><i><%= @project.identifier %></i><br />
</p>
</div>
And it's work !