Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.html.haml « issues « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d3fd9886d45dba977783b48513aedcda4025c3e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
= render "head"
.issues_content
  %h3.page_title
    Issues
    %span (<span class=issue_counter>#{@issues.total_count}</span>)
    .pull-right
      .span6
        - if can? current_user, :write_issue, @project
          = link_to new_project_issue_path(@project, issue: { assignee_id: params[:assignee_id], milestone_id: params[:milestone_id]}), class: "btn btn-primary pull-right", title: "New Issue", id: "new_issue_link" do
            %i.icon-plus
            New Issue
        = form_tag project_issues_path(@project), method: :get, remote: true, id: "issue_search_form", class: 'pull-right'  do
          = hidden_field_tag :status, params[:status], id: 'search_status'
          = hidden_field_tag :assignee_id, params[:assignee_id], id: 'search_assignee_id'
          = hidden_field_tag :milestone_id, params[:milestone_id], id: 'search_milestone_id'
          = hidden_field_tag :label_name, params[:label_name], id: 'search_label_name'
          = search_field_tag :issue_search, nil, { placeholder: 'Search', class: 'issue_search input-xlarge append-right-10 search-text-input' }

  .clearfix

.row
  .span3
    = render 'filter', entity: 'issue'
  .span9.issues-holder
    = render "issues"