如何在Redmine中的问题表报告中添加另一列?
我想知道是否有人可以帮助我确定我需要采取哪些步骤来修改 URL 显示的表格中的 Redmine:
http://0.0.0.0:3000/projects/my_project/issues
我需要添加另一列,比如说“关闭日期”,它报告最后的日期问题变为关闭状态。
据我了解Redmine,问题是返回在日志上创建的字段,其日志_详细信息更改为状态_id = 5
并且更改将在issues_controller中的某个位置,但考虑到我对Ruby和Ruby on Rails的无知,我觉得失去了......
所以,任何帮助都是非常有价值的。
谢谢。
I would like to know if someone can help me to determine what steps I do need to modify Redmine in the table shown at the URL:
http://0.0.0.0:3000/projects/my_project/issues
I need to add another column, lets say "close date", where it reports the last date on which an issue became closed state.
As I understand Redmine, the matter is to return the field created _ on of the journal whose journal _ details change to status _ id = 5
And the change would be somewhere in issues_controller, but given my ignorance on Ruby and Ruby on Rails I feel lost...
So, any help would be very valuable.
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您不需要处理 ruby 代码来自定义问题表。
以管理员身份登录并选择
管理(左上角)->设置-> 问题跟踪
在所选页面底部的
中,您可以看到表格问题列表中显示的默认列
选择项目内所需的字段。
如果您需要“新字段”可搜索或用作过滤器:
管理(左上角)->自定义字段->问题
创建您的字段并选择您需要的选项。
http://www.redmine.org/projects/redmine/wiki/RedmineCustomFields
You don't need to handle ruby code for to customize issue table.
Login as admin and select
Administration (top left corner) -> Settings-> Issue tracking
in the bottom of selected page you can see the table
Default columns displayed on the issue list
Select the fields that you need inside you project.
If you need of "new fields" to be searchable or used as filter :
Administration (top left corner) -> Custom fields -> Issue
Create your field and select option that you need.
http://www.redmine.org/projects/redmine/wiki/RedmineCustomFields
我实际上认为 RedMine 中有一个设置可以向问题、项目、用户等添加自定义字段。
转到
Administration =>;自定义字段=>选择“问题”选项卡 =>新的自定义字段
。希望有帮助。 =)
I actually think there is a setting in RedMine to add a custom field to issues, projects, users, etc.
Go to
Administration => Custom Fields => Select Issue Tab => New Custom Field
.Hope it helps. =)