2015-08-03 03:42:09 -06:00
|
|
|
{{template "base/head" .}}
|
2023-02-01 15:56:10 -07:00
|
|
|
<div role="main" aria-label="{{.Title}}" class="page-content repository milestones">
|
2015-08-03 03:42:09 -06:00
|
|
|
{{template "repo/header" .}}
|
2015-08-09 08:45:38 -06:00
|
|
|
<div class="ui container">
|
2023-10-17 18:03:42 -06:00
|
|
|
{{template "base/alert" .}}
|
|
|
|
|
|
|
|
<div class="list-header">
|
2015-08-03 03:42:09 -06:00
|
|
|
{{template "repo/issue/navbar" .}}
|
2023-10-17 18:03:42 -06:00
|
|
|
{{template "repo/issue/search" .}}
|
2019-01-23 11:58:38 -07:00
|
|
|
{{if and (or .CanWriteIssues .CanWritePulls) (not .Repository.IsArchived)}}
|
2023-09-25 02:56:50 -06:00
|
|
|
<a class="ui small primary button" href="{{$.Link}}/new">{{ctx.Locale.Tr "repo.milestones.new"}}</a>
|
2015-08-05 01:27:22 -06:00
|
|
|
{{end}}
|
2015-08-03 03:42:09 -06:00
|
|
|
</div>
|
2015-12-07 15:30:52 -07:00
|
|
|
|
2023-10-17 18:03:42 -06:00
|
|
|
{{template "repo/issue/filters" .}}
|
2021-04-08 05:53:59 -06:00
|
|
|
|
|
|
|
<!-- milestone list -->
|
2023-06-18 04:31:42 -06:00
|
|
|
<div class="milestone-list">
|
2015-08-09 08:45:38 -06:00
|
|
|
{{range .Milestones}}
|
2023-06-18 04:31:42 -06:00
|
|
|
<li class="milestone-card">
|
|
|
|
<div class="milestone-header">
|
Migrate margin and padding helpers to tailwind (#30043)
This will conclude the refactor of 1:1 class replacements to tailwind,
except `gt-hidden`. Commands ran:
```bash
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-0#tw-$1$2-0#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-1#tw-$1$2-0.5#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-2#tw-$1$2-1#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-3#tw-$1$2-2#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-4#tw-$1$2-4#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-5#tw-$1$2-8#g' {web_src/js,templates,routers,services}/**/*
```
2024-03-24 10:42:49 -06:00
|
|
|
<h3 class="flex-text-block tw-m-0">
|
2023-06-18 04:31:42 -06:00
|
|
|
{{svg "octicon-milestone" 16}}
|
|
|
|
<a class="muted" href="{{$.RepoLink}}/milestone/{{.ID}}">{{.Name}}</a>
|
2023-02-11 20:19:09 -07:00
|
|
|
</h3>
|
2024-03-22 13:51:29 -06:00
|
|
|
<div class="tw-flex tw-items-center">
|
Migrate margin and padding helpers to tailwind (#30043)
This will conclude the refactor of 1:1 class replacements to tailwind,
except `gt-hidden`. Commands ran:
```bash
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-0#tw-$1$2-0#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-1#tw-$1$2-0.5#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-2#tw-$1$2-1#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-3#tw-$1$2-2#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-4#tw-$1$2-4#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-5#tw-$1$2-8#g' {web_src/js,templates,routers,services}/**/*
```
2024-03-24 10:42:49 -06:00
|
|
|
<span class="tw-mr-2">{{.Completeness}}%</span>
|
2022-05-19 21:04:45 -06:00
|
|
|
<progress value="{{.Completeness}}" max="100"></progress>
|
2015-12-07 15:30:52 -07:00
|
|
|
</div>
|
|
|
|
</div>
|
2023-06-18 04:31:42 -06:00
|
|
|
<div class="milestone-toolbar">
|
|
|
|
<div class="group">
|
|
|
|
<div class="flex-text-block">
|
|
|
|
{{svg "octicon-issue-opened" 14}}
|
2023-09-25 06:42:40 -06:00
|
|
|
{{ctx.Locale.PrettyNumber .NumOpenIssues}} {{ctx.Locale.Tr "repo.issues.open_title"}}
|
2023-06-18 04:31:42 -06:00
|
|
|
</div>
|
|
|
|
<div class="flex-text-block">
|
|
|
|
{{svg "octicon-check" 14}}
|
2023-09-25 06:42:40 -06:00
|
|
|
{{ctx.Locale.PrettyNumber .NumClosedIssues}} {{ctx.Locale.Tr "repo.issues.closed_title"}}
|
2023-06-18 04:31:42 -06:00
|
|
|
</div>
|
|
|
|
{{if .TotalTrackedTime}}
|
|
|
|
<div class="flex-text-block">
|
|
|
|
{{svg "octicon-clock"}}
|
|
|
|
{{.TotalTrackedTime|Sec2Time}}
|
|
|
|
</div>
|
2015-12-07 15:30:52 -07:00
|
|
|
{{end}}
|
2023-06-18 04:31:42 -06:00
|
|
|
{{if .UpdatedUnix}}
|
|
|
|
<div class="flex-text-block">
|
|
|
|
{{svg "octicon-clock"}}
|
2024-02-22 10:02:33 -07:00
|
|
|
{{ctx.Locale.Tr "repo.milestones.update_ago" (TimeSinceUnix .UpdatedUnix ctx.Locale)}}
|
2023-06-18 04:31:42 -06:00
|
|
|
</div>
|
2015-12-07 15:30:52 -07:00
|
|
|
{{end}}
|
2023-06-18 04:31:42 -06:00
|
|
|
<div class="flex-text-block">
|
|
|
|
{{if .IsClosed}}
|
2023-09-25 06:42:40 -06:00
|
|
|
{{$closedDate:= TimeSinceUnix .ClosedDateUnix ctx.Locale}}
|
2023-06-18 04:31:42 -06:00
|
|
|
{{svg "octicon-clock" 14}}
|
2024-02-22 10:02:33 -07:00
|
|
|
{{ctx.Locale.Tr "repo.milestones.closed" $closedDate}}
|
2023-06-18 04:31:42 -06:00
|
|
|
{{else}}
|
|
|
|
{{if .DeadlineString}}
|
2023-08-16 02:22:25 -06:00
|
|
|
<span class="flex-text-inline {{if .IsOverdue}}text red{{end}}">
|
2023-06-21 19:59:49 -06:00
|
|
|
{{svg "octicon-calendar" 14}}
|
2023-06-18 04:31:42 -06:00
|
|
|
{{DateTime "short" .DeadlineString}}
|
|
|
|
</span>
|
|
|
|
{{else}}
|
2023-06-21 19:59:49 -06:00
|
|
|
{{svg "octicon-calendar" 14}}
|
2023-09-25 02:56:50 -06:00
|
|
|
{{ctx.Locale.Tr "repo.milestones.no_due_date"}}
|
2023-06-18 04:31:42 -06:00
|
|
|
{{end}}
|
|
|
|
{{end}}
|
|
|
|
</div>
|
2015-12-07 15:30:52 -07:00
|
|
|
</div>
|
2023-06-18 04:31:42 -06:00
|
|
|
{{if and (or $.CanWriteIssues $.CanWritePulls) (not $.Repository.IsArchived)}}
|
|
|
|
<div class="group">
|
2023-09-25 02:56:50 -06:00
|
|
|
<a class="flex-text-inline" href="{{$.Link}}/{{.ID}}/edit">{{svg "octicon-pencil" 14}}{{ctx.Locale.Tr "repo.issues.label_edit"}}</a>
|
2023-06-18 04:31:42 -06:00
|
|
|
{{if .IsClosed}}
|
2023-09-25 02:56:50 -06:00
|
|
|
<a class="link-action flex-text-inline" href data-url="{{$.Link}}/{{.ID}}/open">{{svg "octicon-check" 14}}{{ctx.Locale.Tr "repo.milestones.open"}}</a>
|
2023-06-18 04:31:42 -06:00
|
|
|
{{else}}
|
2023-09-25 02:56:50 -06:00
|
|
|
<a class="link-action flex-text-inline" href data-url="{{$.Link}}/{{.ID}}/close">{{svg "octicon-x" 14}}{{ctx.Locale.Tr "repo.milestones.close"}}</a>
|
2023-06-18 04:31:42 -06:00
|
|
|
{{end}}
|
2023-09-25 02:56:50 -06:00
|
|
|
<a class="delete-button flex-text-inline" href="#" data-url="{{$.RepoLink}}/milestones/delete" data-id="{{.ID}}">{{svg "octicon-trash" 14}}{{ctx.Locale.Tr "repo.issues.label_delete"}}</a>
|
2023-06-18 04:31:42 -06:00
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
2015-12-15 19:25:38 -07:00
|
|
|
{{if .Content}}
|
2021-05-07 02:43:41 -06:00
|
|
|
<div class="markup content">
|
2024-03-01 00:11:51 -07:00
|
|
|
{{.RenderedContent}}
|
2015-12-15 19:25:38 -07:00
|
|
|
</div>
|
2015-08-03 03:42:09 -06:00
|
|
|
{{end}}
|
2015-12-07 15:30:52 -07:00
|
|
|
</li>
|
2015-08-09 08:45:38 -06:00
|
|
|
{{end}}
|
2015-12-07 15:30:52 -07:00
|
|
|
|
2019-04-19 22:15:19 -06:00
|
|
|
{{template "base/paginate" .}}
|
2015-08-03 03:42:09 -06:00
|
|
|
</div>
|
|
|
|
</div>
|
2014-05-07 07:01:00 -06:00
|
|
|
</div>
|
2015-08-05 06:23:08 -06:00
|
|
|
|
2018-11-28 04:26:14 -07:00
|
|
|
{{if or .CanWriteIssues .CanWritePulls}}
|
2023-04-24 05:08:59 -06:00
|
|
|
<div class="ui g-modal-confirm delete modal">
|
2023-04-23 03:24:19 -06:00
|
|
|
<div class="header">
|
2021-03-21 22:04:19 -06:00
|
|
|
{{svg "octicon-trash"}}
|
2023-09-25 02:56:50 -06:00
|
|
|
{{ctx.Locale.Tr "repo.milestones.deletion"}}
|
2015-12-07 15:30:52 -07:00
|
|
|
</div>
|
|
|
|
<div class="content">
|
2023-09-25 02:56:50 -06:00
|
|
|
<p>{{ctx.Locale.Tr "repo.milestones.deletion_desc"}}</p>
|
2015-12-07 15:30:52 -07:00
|
|
|
</div>
|
2023-04-23 03:24:19 -06:00
|
|
|
{{template "base/modal_actions_confirm" .}}
|
2015-12-07 15:30:52 -07:00
|
|
|
</div>
|
2015-08-05 06:23:08 -06:00
|
|
|
{{end}}
|
2015-12-07 15:30:52 -07:00
|
|
|
{{template "base/footer" .}}
|