如何设置“附加评论”中的默认内容? Bugzilla 中 post_bug.cgi 页面上的框?
我已经通过编辑 create.html.tmpl 模板更改了 Enter_bug.cgi 页面中“描述”框中的默认文本,但我无法找到可以编辑 post_bug.cgi 页面的模板。有谁知道我在哪里可以找到这个?
我使用的是 Bugzilla 版本 3.4.2
I have already changed the default text in 'description' box in the enter_bug.cgi page by editing the create.html.tmpl template but I am unable to find the template where I can edit the post_bug.cgi page. Does anyone know where I can find this?
I am using Bugzilla version 3.4.2
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在
template/en/default/bug/edit.html.tmpl
第 250 行查找global/textarea.html.tmpl
的INCLUDE
。您应该能够添加defaultcontent
参数来获得您想要的结果。您可能还想在
template/en/default/list/edit-multiple.html.tmpl
中添加一些内容,以便在有人更改多个错误时使用。要在 Mozilla 代码中查找内容,通常最好检查您正在查看的页面的 HTML,以查找上下文特有的一些文本,然后继续查找。在这种情况下,搜索
label for="comment"
将会引导您到达正确的位置。Look for the
INCLUDE
ofglobal/textarea.html.tmpl
at line 250 oftemplate/en/default/bug/edit.html.tmpl
. You should be able to add adefaultcontent
parameter to get the results you want.You might also want to add some content in
template/en/default/list/edit-multiple.html.tmpl
for when someone is changing multiple bugs.To find stuff in the Mozilla code, it's usually best to examine the HTML for the page you're looking at to find some text that is unique to the context, then go look for that. In this case, searching for
label for="comment"
would have led you to the correct places.