Make filter box and project header more responsive
This commit is contained in:
@@ -1,15 +1,21 @@
|
||||
<div class="project-header">
|
||||
<?= $this->hook->render('template:project:header:before', array('project' => $project)) ?>
|
||||
|
||||
<?= $this->render('project_header/dropdown', array('project' => $project, 'board_view' => $board_view)) ?>
|
||||
<?= $this->render('project_header/views', array('project' => $project, 'filters' => $filters)) ?>
|
||||
<?= $this->render('project_header/search', array(
|
||||
'project' => $project,
|
||||
'filters' => $filters,
|
||||
'custom_filters_list' => isset($custom_filters_list) ? $custom_filters_list : array(),
|
||||
'users_list' => isset($users_list) ? $users_list : array(),
|
||||
'categories_list' => isset($categories_list) ? $categories_list : array(),
|
||||
)) ?>
|
||||
<div class="dropdown-component">
|
||||
<?= $this->render('project_header/dropdown', array('project' => $project, 'board_view' => $board_view)) ?>
|
||||
</div>
|
||||
<div class="views-switcher-component">
|
||||
<?= $this->render('project_header/views', array('project' => $project, 'filters' => $filters)) ?>
|
||||
</div>
|
||||
<div class="filter-box-component">
|
||||
<?= $this->render('project_header/search', array(
|
||||
'project' => $project,
|
||||
'filters' => $filters,
|
||||
'custom_filters_list' => isset($custom_filters_list) ? $custom_filters_list : array(),
|
||||
'users_list' => isset($users_list) ? $users_list : array(),
|
||||
'categories_list' => isset($categories_list) ? $categories_list : array(),
|
||||
)) ?>
|
||||
</div>
|
||||
|
||||
<?= $this->hook->render('template:project:header:after', array('project' => $project)) ?>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user