Page 1 of 1
customise main view
Posted: 11 Aug 2010, 03:44
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?
Re: customise main view
Posted: 11 Aug 2010, 06:37
by atrol
I don't understand your request.
The project selection appears on main_page.php and also on all other pages.
Re: customise main view
Posted: 11 Aug 2010, 13:16
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.
Re: customise main view
Posted: 11 Aug 2010, 14:42
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.
Re: customise main view
Posted: 12 Aug 2010, 00:19
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