Closed Bug 362524 Opened 18 years ago Closed 18 years ago

Seperate initial description from comments

Categories

(Bugzilla :: Creating/Changing Bugs, enhancement)

x86
Windows XP
enhancement
Not set
normal

Tracking

()

RESOLVED WONTFIX

People

(Reporter: jessn, Unassigned)

Details

User-Agent:       Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)
Build Identifier: 

Looking into the source I've noticed that the initial description and the comments are produced by the same code snippet.

[%# *** Additional Comments *** %]
<div id="comments">
[% PROCESS bug/comments.html.tmpl
   comments = bug.longdescs
   mode = user.id ? "edit" : "show"
 %]
</div>

I would like to have it splitted up, which makes the opportunity of i.e. listing the initial description at the top of the page and the comments history at the bottom.

This could be done like this:

[%# *** The Initial Description *** %]
[% PROCESS bug/longdescription.html.tmpl
   comments = bug.longdescs
   mode = user.id ? "edit" : "show"
 %]

[%# *** Comments History *** %]
[% PROCESS bug/comments.html.tmpl
   comments = bug.longdescs
   initial_desc = true | false
   mode = user.id ? "edit" : "show"
 %]

Reproducible: Always
The initial description is just the first comment. If you want to customize your local Bugzilla, you can figure out how to get just the first comment and put it where you'd like.

Questions about that would be best directed to the support list, described at http://www.bugzilla.org/support/
Status: UNCONFIRMED → RESOLVED
Closed: 18 years ago
Resolution: --- → WONTFIX
You need to log in before you can comment on or make changes to this bug.