View Issue Details

IDProjectCategoryView StatusLast Update
0003693mantisbtbugtrackerpublic2014-09-23 18:05
Reporterhacker Assigned Todregad  
PrioritynormalSeverityfeatureReproducibilityalways
Status closedResolutionfixed 
PlatformIntelOSLinuxOS Version2.6.4 kernel
Product Version0.18.2 
Target Version1.2.13Fixed in Version1.2.13 
Summary0003693: Make the username in Manage Projects a clickable link to edit that user
Description

Another small fix that adds a very useful feature.

Currently, if you want to find out which users are assigned to your project as developers or above, you go to Manage -> Manage Projects, and find the username.

Then you go back to Manage -> Manage Users, and surf down the list of users, and click on their name to edit their project preferences.

This small fix makes the username, as shown on the Manage Projects page, a clickable link to the edit form, directly from the Manager Projects page.

It makes the workflow much faster, and decreases having to draw that huge userlist twice, just to edit the same user once. This goes along with my previous feature request to restrict the userlist displayed to only DEVELOPER and above for projects.

Additional Information

At the bottom of manage_proj_edit_page.php, there is a small function that echo'es the username to the table.

<?php echo $t_user['username'] ?>

Simply change it to the following, to make the username displayed, a clickable link to their edit form:

<a href="manage_user_edit_page.php?user_id=<?php echo $t_user['id'] ?>"><?php echo $t_user['username'] ?></a>

TagsNo tags attached.

Relationships

related to 0015721 closedgrangeway Functionality to consider porting to master-2.0.x 

Activities

grangeway

grangeway

2013-04-05 17:56

reporter   ~0036120

Marking as 'acknowledged' not resolved/closed to track that change gets ported to master-2.0.x branch

Related Changesets

MantisBT: master-1.2.x b094035a

2012-12-12 03:52

dregad


Details Diff
Make username in Manage Projects page a link to edit user

Fixes 0003693
Affected Issues
0003693
mod - manage_proj_edit_page.php Diff File

MantisBT: master 378ad974

2012-12-12 03:52

dregad


Details Diff
Make username in Manage Projects page a link to edit user

Fixes 0003693
Affected Issues
0003693
mod - manage_proj_edit_page.php Diff File