customise main view

Post about your customizations to share with others.

Moderators: Developer, Contributor

Post Reply
ismee
Posts: 35
Joined: 21 Mar 2010, 06:54

customise main view

Post by ismee »

i know this is huge customization, but my customer request it
after login page, the project selection pull down list appeare at main view..
is this possible?
atrol
Site Admin
Posts: 8378
Joined: 26 Mar 2008, 21:37
Location: Germany

Re: customise main view

Post by atrol »

I don't understand your request.
The project selection appears on main_page.php and also on all other pages.
Please use Search before posting and read the Manual
ismee
Posts: 35
Joined: 21 Mar 2010, 06:54

Re: customise main view

Post by ismee »

i mean the fronpage view.
currently it is appeared at right corner...
can i configured my own front page? the project selection is at center ,bigger size. user can only see the issue after select the project, instead of going to view issues page and filtering the need.
we were using bugzilla previously, and can be configured what we need, clean and easy front page.
atrol
Site Admin
Posts: 8378
Joined: 26 Mar 2008, 21:37
Location: Germany

Re: customise main view

Post by atrol »

There are some changes which can be done with customization

Add settings in file config_inc.php
to set the page which is shown after login

Code: Select all

$g_default_home_page = 'my_view_page.php';
to adjust the boxes which are shown at my_view_page
0 means not visible, not equal 0 means the ordering of display

Code: Select all

	$g_my_view_boxes = array (
		'assigned'      => '1',
		'unassigned'    => '2',
		'reported'      => '3',
		'resolved'      => '4',
		'recent_mod'	=> '5',
		'monitored'		=> '6',
		'feedback'		=> '0',
		'verify'		=> '0',
		'my_comments'	=> '0'
	);
It's plannd to have a templating engine in future versions.
At the moment you can change css/default.css to adjust colors, fonts, alignments, ....

If you want to have a complete own starting page you can write a plugin for this purpose.
Please use Search before posting and read the Manual
ismee
Posts: 35
Joined: 21 Mar 2010, 06:54

Re: customise main view

Post by ismee »

thanks...
templating engine sounds good....some of my customer feel that the page is untidy with those filter function...
was thinking to have a clean and easy template
Post Reply