diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-10-28 14:31:59 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-10-28 14:31:59 +0000 |
commit | 0af6f347580dd7c331f16aa50904d010fad19e23 (patch) | |
tree | 62abc086a5c11385d04901dba5c0b050a2346034 /public | |
parent | bb4acc02d06d507424057ea41eebe54fdb224b85 (diff) | |
download | redmine-0af6f347580dd7c331f16aa50904d010fad19e23.tar.gz redmine-0af6f347580dd7c331f16aa50904d010fad19e23.zip |
Added the hability to copy an issue.
It can be done from the 'issue/show' view or from the context menu on the issue list.
The Copy functionality is of course only available if the user is allowed to create an issue.
It copies the issue attributes and the custom fields values.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@873 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'public')
-rw-r--r-- | public/images/copy.png | bin | 0 -> 291 bytes | |||
-rw-r--r-- | public/stylesheets/application.css | 1 |
2 files changed, 1 insertions, 0 deletions
diff --git a/public/images/copy.png b/public/images/copy.png Binary files differnew file mode 100644 index 000000000..dccaa0614 --- /dev/null +++ b/public/images/copy.png diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css index d1041f162..97d4a291d 100644 --- a/public/stylesheets/application.css +++ b/public/stylesheets/application.css @@ -421,6 +421,7 @@ vertical-align: middle; .icon-add { background-image: url(../images/add.png); } .icon-edit { background-image: url(../images/edit.png); } +.icon-copy { background-image: url(../images/copy.png); } .icon-del { background-image: url(../images/delete.png); } .icon-move { background-image: url(../images/move.png); } .icon-save { background-image: url(../images/save.png); } |