View Issue Details

IDProjectCategoryView StatusLast Update
0007457mantisbtrelationshipspublic2012-07-28 05:57
ReporterEllerbrok Assigned To 
PrioritynormalSeverityfeatureReproducibilityN/A
Status acknowledgedResolutionopen 
Product Version1.1.0a1 
Summary0007457: Show issue priotiy in relationship list
Description

It would be very helpful to see the priority of each issue in the relationship list.

Tagspatch
Attached Files
pic_prio.png (3,101 bytes)   
pic_prio.png (3,101 bytes)   

Relationships

related to 0014522 new I want to be able to configure the view in the Relationships window 

Activities

Ellerbrok

Ellerbrok

2006-09-20 10:20

reporter   ~0013420

I added:

#add priority
$t_relationship_info_html .= $t_td. icon_get_status_icon( $t_bug->priority ) . '</td>';

in the relationship_api.php. Maybe you want to add it to the source.

mantistestor

mantistestor

2009-10-16 05:39

reporter   ~0023211

Last edited: 2009-10-16 10:04

can you tell where you added this line exactly?
it seems this line dont work in 1.2.0a3. i tried some codes but only the string bring only the unparsed item like "30" for prio "normal".


add project name and category

$t_relationship_info_html .= $t_td;
if( $p_show_project ) {
$t_relationship_info_html .= '[' . $t_related_project_name . '] ';
}
$t_relationship_info_html .= $t_bug->priority. ' </td>';


vboctor

vboctor

2009-10-17 12:45

manager   ~0023226

It is not possible to customize fields that are show in the View Issues, Print Issues, CSV, and Excel. I wonder if the right way to fix this would be to do one of the following:

  1. Have the ability to customize fields to show in issue relationship.
  2. Use the same fields as View Issues.

In this case we have the "relationship" field which I would consider mandatory and would be OK if we always have it as the first one and not necessarily part of the customization process.

Patches are welcome :)

mantistestor

mantistestor

2009-10-19 08:19

reporter   ~0023237

having the same list in view_all_bug_page.php and the relationsship-table seems to be a good idea. but, i think we are close on the issue with this:

in relationship_api.php

  • $t_relationship_info_html .= $t_bug->priority.' </td>';
    brings the code for example "30". 30 meens the priority "normal". I look for a way to parse the "30" in "normal" like all the other sides does. printscreens explain probably better than my bad english... ;)