{{template "repo/header" .}}
+ {{template "user/recently_pushed_branches" .}}
{{template "repo/issue/navbar" .}} diff --git a/templates/user/dashboard/dashboard.tmpl b/templates/user/dashboard/dashboard.tmpl index d4553ea61ba24..0d361ad55e220 100644 --- a/templates/user/dashboard/dashboard.tmpl +++ b/templates/user/dashboard/dashboard.tmpl @@ -5,6 +5,7 @@ {{template "base/alert" .}}
+ {{template "user/recently_pushed_branches" .}} {{template "user/heatmap" .}} {{template "user/dashboard/feeds" .}}
diff --git a/templates/user/recently_pushed_branches.tmpl b/templates/user/recently_pushed_branches.tmpl new file mode 100644 index 0000000000000..598c0ebfd847c --- /dev/null +++ b/templates/user/recently_pushed_branches.tmpl @@ -0,0 +1,11 @@ +{{range .RecentlyPushedBranches}} +
+
+ {{$timeSince := TimeSince .Time $.locale}} + {{$.locale.Tr "repo.pulls.recently_pushed_to_branches" .Repo.Owner.Name .Repo.LowerName .BranchName $timeSince | Safe}} +
+ + {{$.locale.Tr "repo.pulls.compare_changes"}} + +
+{{end}} diff --git a/tests/integration/repo_branch_test.go b/tests/integration/repo_branch_test.go index c56aa43c514bc..91674ddc82dba 100644 --- a/tests/integration/repo_branch_test.go +++ b/tests/integration/repo_branch_test.go @@ -120,9 +120,9 @@ func testCreateBranches(t *testing.T, giteaURL *url.URL) { req := NewRequest(t, "GET", redirectURL) resp := session.MakeRequest(t, req, http.StatusOK) htmlDoc := NewHTMLParser(t, resp.Body) - assert.Equal(t, - test.FlashMessage, + assert.Contains(t, strings.TrimSpace(htmlDoc.doc.Find(".ui.message").Text()), + test.FlashMessage, ) } } diff --git a/web_src/css/helpers.css b/web_src/css/helpers.css index e2d195822fc0f..3ce89990c287d 100644 --- a/web_src/css/helpers.css +++ b/web_src/css/helpers.css @@ -6,6 +6,7 @@ .gt-ab { align-items: baseline !important; } .gt-tc { text-align: center !important; } .gt-tl { text-align: left !important; } +.gt-tr { text-align: right !important; } .gt-tdn { text-decoration: none !important; } .gt-jc { justify-content: center !important; } .gt-js { justify-content: flex-start !important; }