Skip to content

  • Projects
  • Groups
  • Snippets
  • Help
  • This project
    • Loading...
  • Sign in / Register
V
venjob_nth
  • Overview
    • Overview
    • Details
    • Activity
    • Cycle Analytics
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
    • Charts
  • Issues 0
    • Issues 0
    • List
    • Board
    • Labels
    • Milestones
  • Merge Requests 3
    • Merge Requests 3
  • CI / CD
    • CI / CD
    • Pipelines
    • Jobs
    • Schedules
    • Charts
  • Wiki
    • Wiki
  • Members
  • Collapse sidebar
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Ngô Trung Hưng
  • venjob_nth
  • Merge Requests
  • !7

Merged
Opened Aug 06, 2020 by Ngô Trung Hưng@hungnt 
  • Report abuse
Report abuse

create Job Details

×

Check out, review, and merge locally

Step 1. Fetch and check out the branch for this merge request

git fetch origin
git checkout -b ID20_DetailJob origin/ID20_DetailJob

Step 2. Review the changes locally

Step 3. Merge the branch and fix any conflicts that come up

git checkout master
git merge --no-ff ID20_DetailJob

Step 4. Push the result of the merge to GitLab

git push origin master

Note that pushing to GitLab requires write access to this repository.

Tip: You can also checkout merge requests locally by following these guidelines.

  • Discussion 2
  • Commits 3
  • Pipelines 3
  • Changes 22
{{ resolvedDiscussionCount }}/{{ discussionCount }} {{ resolvedCountText }} resolved
  • Hoang Phuc Do
    @phucdh started a discussion on an old version of the diff Aug 07, 2020
    Last updated by Ngô Trung Hưng Aug 07, 2020
    app/views/job/detail.html.erb 0 → 100644
    20 <div class="job_title">
    21 <h1><%= @job.name %></h1>
    22 <span><i class="far fa-building"></i> <%= link_to @job.company.name, jobs_path(model: 'company', slug: @job.company.slug), class: 'link_ct apply_job' %></span>
    23 </div>
    24 </div>
    25 <div class="col-lg-3 ">
    26 <div class="btn_apply_job">
    27 <%= link_to 'Nộp CV ngay', '#', class: 'btn btn-apply_job' %>
    28 </div>
    29 </div>
    30 <div class="col-lg-12 col-md-12">
    31 <div class="box_detail_jobs">
    32 <div class="box_detail_jobs_location">
    33 <span><i class="fas fa-map-marker-alt"></i> Địa điểm làm việc: </span>
    34 <% @job.cities.each do |x| %>
    35 <%= link_to "&nbsp;#{x.name}&nbsp;".html_safe , jobs_path(model: 'city', slug: x.slug), class: 'link_ct apply_job link_optimize'%>
    • Hoang Phuc Do @phucdh commented Aug 07, 2020
      Master

      Indent với đoạn code trong block, sửa các chỗ tương tự

      Edited Aug 07, 2020 by Hoang Phuc Do
      Indent với đoạn code trong block, sửa các chỗ tương tự
    • Ngô Trung Hưng @hungnt

      changed this line in version 2 of the diff

      Aug 07, 2020

      changed this line in version 2 of the diff

      changed this line in [version 2 of the diff](https://gitlab.zigexn.vn/hungnt/venjob_nth/merge_requests/7/diffs?diff_id=4972&start_sha=297950efffb5092e72e09d22f9e2eab2e90acf87#2a9478fac5c799980a15fee5575206c82471e89d_35_33)
      Toggle commit list
    Please register or sign in to reply
  • Hoang Phuc Do
    @phucdh started a discussion on an old version of the diff Aug 07, 2020
    Last updated by Ngô Trung Hưng Aug 07, 2020
    app/views/job/detail.html.erb 0 → 100644
    33 <span><i class="fas fa-map-marker-alt"></i> Địa điểm làm việc: </span>
    34 <% @job.cities.each do |x| %>
    35 <%= link_to "&nbsp;#{x.name}&nbsp;".html_safe , jobs_path(model: 'city', slug: x.slug), class: 'link_ct apply_job link_optimize'%>
    36 <% end %>
    37 </div>
    38 <div class="box_detail_jobs_salary">
    39 <br>
    40 <div class="row">
    41 <div class="col-lg-4 col-md-6">
    42 <div class="detail_info">
    43 <span><i class="fab fa-linode"></i> Lương: <%= @job.salary %></span>
    44 </div>
    45 </div>
    46 <div class="col-lg-4 col-md-6">
    47 <div class="detail_info">
    48 <span><i class="fab fa-linode"></i> Ngày đăng tin: <%= @job.created_at.strftime('%d - %m - %Y') %></span>
    • Hoang Phuc Do @phucdh commented Aug 07, 2020
      Master

      Áp dụng decorator pattern

      Sử dụng cho đoạn này created_at.strftime('%d - %m - %Y') và các phần tương tự khác nếu chỉnh sửa output của thuộc tính của @job

      Edited Aug 07, 2020 by Hoang Phuc Do
      Áp dụng decorator pattern Sử dụng cho đoạn này `created_at.strftime('%d - %m - %Y')` và các phần tương tự khác nếu chỉnh sửa output của thuộc tính của `@job`
    • Ngô Trung Hưng @hungnt

      changed this line in version 2 of the diff

      Aug 07, 2020

      changed this line in version 2 of the diff

      changed this line in [version 2 of the diff](https://gitlab.zigexn.vn/hungnt/venjob_nth/merge_requests/7/diffs?diff_id=4972&start_sha=297950efffb5092e72e09d22f9e2eab2e90acf87#2a9478fac5c799980a15fee5575206c82471e89d_48_48)
      Toggle commit list
    Please register or sign in to reply
  • Ngô Trung Hưng @hungnt

    added 1 commit

    • 5931eb90 - use decorator pattern

    Compare with previous version

    Aug 07, 2020

    added 1 commit

    • 5931eb90 - use decorator pattern

    Compare with previous version

    added 1 commit * 5931eb90 - use decorator pattern [Compare with previous version](https://gitlab.zigexn.vn/hungnt/venjob_nth/merge_requests/7/diffs?diff_id=4972&start_sha=297950efffb5092e72e09d22f9e2eab2e90acf87)
    Toggle commit list
  • Ngô Trung Hưng @hungnt

    added 1 commit

    • 75e4cd54 - use gem draper

    Compare with previous version

    Aug 10, 2020

    added 1 commit

    • 75e4cd54 - use gem draper

    Compare with previous version

    added 1 commit * 75e4cd54 - use gem draper [Compare with previous version](https://gitlab.zigexn.vn/hungnt/venjob_nth/merge_requests/7/diffs?diff_id=4975&start_sha=5931eb905d56355e5288b6c5240776e78984c366)
    Toggle commit list
  • Hoang Phuc Do @phucdh

    mentioned in commit b79d22ce

    Aug 10, 2020

    mentioned in commit b79d22ce

    mentioned in commit b79d22ce57a55fcc7485d2d1f40f089cc84fd7bb
    Toggle commit list
  • Hoang Phuc Do @phucdh

    merged

    Aug 10, 2020

    merged

    merged
    Toggle commit list
  • Write
  • Preview
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment
Assignee
No assignee
Assign to
None
Milestone
None
Assign milestone
Time tracking
2
2 participants
Reference: hungnt/venjob_nth!7
×

Revert this merge request

Switch branch
Cancel
A new branch will be created in your fork and a new merge request will be started.
×

Cherry-pick this merge request

Switch branch
Cancel
A new branch will be created in your fork and a new merge request will be started.