2017-12-31 06:17:52 +05:30
|
|
|
<div class="ui stackable grid">
|
2015-08-12 14:34:23 +05:30
|
|
|
{{if .Flash}}
|
2015-12-08 04:00:52 +05:30
|
|
|
<div class="sixteen wide column">
|
|
|
|
{{template "base/alert" .}}
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
{{if not .Issue.IsPull}}
|
|
|
|
{{template "repo/issue/view_title" .}}
|
|
|
|
{{end}}
|
|
|
|
|
2021-10-11 04:10:03 +05:30
|
|
|
<!-- I know, there is probably a better way to do this (moved from sidebar.tmpl, original author: 6543 @ 2021-02-28) -->
|
2021-10-15 08:05:26 +05:30
|
|
|
<!-- Agree, there should be a better way, eg: introduce window.config.pageData (original author: wxiaoguang @ 2021-09-05) -->
|
2021-10-11 04:10:03 +05:30
|
|
|
<input type="hidden" id="repolink" value="{{$.RepoRelPath}}">
|
|
|
|
<input type="hidden" id="repoId" value="{{.Repository.ID}}">
|
2023-03-27 21:35:51 +05:30
|
|
|
<input type="hidden" id="issueIndex" value="{{.Issue.Index}}">
|
2021-10-11 04:10:03 +05:30
|
|
|
<input type="hidden" id="type" value="{{.IssueType}}">
|
|
|
|
|
2022-08-31 21:28:54 +05:30
|
|
|
{{$createdStr:= TimeSinceUnix .Issue.CreatedUnix $.locale}}
|
2019-07-07 03:07:46 +05:30
|
|
|
<div class="twelve wide column comment-list prevent-before-timeline">
|
2023-03-22 02:05:02 +05:30
|
|
|
<div class="ui timeline">
|
2020-04-11 03:31:41 +05:30
|
|
|
<div id="{{.Issue.HashTag}}" class="timeline-item comment first">
|
2023-03-22 02:05:02 +05:30
|
|
|
{{if .Issue.OriginalAuthor}}
|
2021-05-21 22:33:27 +05:30
|
|
|
<span class="timeline-avatar"><img src="{{AppSubUrl}}/assets/img/avatar_default.png"></span>
|
2023-03-22 02:05:02 +05:30
|
|
|
{{else}}
|
2020-04-11 03:31:41 +05:30
|
|
|
<a class="timeline-avatar" {{if gt .Issue.Poster.ID 0}}href="{{.Issue.Poster.HomeLink}}"{{end}}>
|
Add context cache as a request level cache (#22294)
To avoid duplicated load of the same data in an HTTP request, we can set
a context cache to do that. i.e. Some pages may load a user from a
database with the same id in different areas on the same page. But the
code is hidden in two different deep logic. How should we share the
user? As a result of this PR, now if both entry functions accept
`context.Context` as the first parameter and we just need to refactor
`GetUserByID` to reuse the user from the context cache. Then it will not
be loaded twice on an HTTP request.
But of course, sometimes we would like to reload an object from the
database, that's why `RemoveContextData` is also exposed.
The core context cache is here. It defines a new context
```go
type cacheContext struct {
ctx context.Context
data map[any]map[any]any
lock sync.RWMutex
}
var cacheContextKey = struct{}{}
func WithCacheContext(ctx context.Context) context.Context {
return context.WithValue(ctx, cacheContextKey, &cacheContext{
ctx: ctx,
data: make(map[any]map[any]any),
})
}
```
Then you can use the below 4 methods to read/write/del the data within
the same context.
```go
func GetContextData(ctx context.Context, tp, key any) any
func SetContextData(ctx context.Context, tp, key, value any)
func RemoveContextData(ctx context.Context, tp, key any)
func GetWithContextCache[T any](ctx context.Context, cacheGroupKey string, cacheTargetID any, f func() (T, error)) (T, error)
```
Then let's take a look at how `system.GetString` implement it.
```go
func GetSetting(ctx context.Context, key string) (string, error) {
return cache.GetWithContextCache(ctx, contextCacheKey, key, func() (string, error) {
return cache.GetString(genSettingCacheKey(key), func() (string, error) {
res, err := GetSettingNoCache(ctx, key)
if err != nil {
return "", err
}
return res.SettingValue, nil
})
})
}
```
First, it will check if context data include the setting object with the
key. If not, it will query from the global cache which may be memory or
a Redis cache. If not, it will get the object from the database. In the
end, if the object gets from the global cache or database, it will be
set into the context cache.
An object stored in the context cache will only be destroyed after the
context disappeared.
2023-02-15 19:07:34 +05:30
|
|
|
{{avatar $.Context .Issue.Poster}}
|
2015-12-08 04:00:52 +05:30
|
|
|
</a>
|
2023-03-22 02:05:02 +05:30
|
|
|
{{end}}
|
2020-11-08 04:45:09 +05:30
|
|
|
<div class="content comment-container">
|
2023-02-23 07:54:24 +05:30
|
|
|
<div class="ui top attached header comment-header gt-df gt-ac gt-sb" role="heading" aria-level="3">
|
2023-02-13 23:29:59 +05:30
|
|
|
<div class="comment-header-left gt-df gt-ac">
|
2022-08-31 21:28:54 +05:30
|
|
|
{{if .Issue.OriginalAuthor}}
|
2023-02-13 23:29:59 +05:30
|
|
|
<span class="text black gt-bold">
|
2021-09-18 21:52:51 +05:30
|
|
|
{{svg (MigrationIcon .Repository.GetOriginalURLHostname)}}
|
2022-08-31 21:28:54 +05:30
|
|
|
{{.Issue.OriginalAuthor}}
|
2020-10-31 18:47:52 +05:30
|
|
|
</span>
|
|
|
|
<span class="text grey">
|
2022-08-31 21:28:54 +05:30
|
|
|
{{.locale.Tr "repo.issues.commented_at" (.Issue.HashTag|Escape) $createdStr | Safe}}
|
2020-10-31 18:47:52 +05:30
|
|
|
</span>
|
|
|
|
<span class="text migrate">
|
2022-08-31 21:28:54 +05:30
|
|
|
{{if .Repository.OriginalURL}} ({{$.locale.Tr "repo.migrated_from" (.Repository.OriginalURL|Escape) (.Repository.GetOriginalURLHostname|Escape) | Safe}}){{end}}
|
2020-10-31 18:47:52 +05:30
|
|
|
</span>
|
|
|
|
{{else}}
|
Improve UI on mobile (#19546)
Start making the mobile experience not painful and be actually usable. This contains a few smaller changes to enhance this experience.
- Submit buttons on the review forms aren't columns anymore and are now allowed to be displayed on one row.
- The label/milestone & New Issue buttons were given each own row even tough, there's enough place to do it one the same row. This commit fixes that.
- The issues+Pull tab on repo's has a third item besides the label/milestone & New Issue buttons, the search bar. On desktop there's enough place to do this on one row, for mobile it isn't, currently it was using for each item a new row. This commits fixes that by only giving the searchbar a new row and have the other two buttons on the same row.
- The notification table will now be show a scrollbar instead of overflow.
- The repo buttons(Watch, Star, Fork) on mobile were showing quite big and the SVG wasn't even displayed on the same line, if the count of those numbers were too high it would even overflow. This commit removes the SVG, as there isn't any place to show them on the same row and allows them to have a new row if the counts of those buttons are high.
- The admin page can show you a lot of interesting information, on mobile the System Status + Configuration weren't properly displayed as the margin's were too high. This commit fixes that by reducing the margin to a number that makes sense on mobile.
- Fixes to not overflow the tables but instead force them to be scrollable.
- When viewing a issue or pull request, the comments aren't full-width but instead 80% and aligned to right, on mobile this is a annoyance as there isn't much width to begin with. This commits fixes that by forcing full-width and removing the avatars on the left side and instead including them inline in the comment header.
2022-05-01 21:41:21 +05:30
|
|
|
<a class="inline-timeline-avatar" href="{{.Issue.Poster.HomeLink}}">
|
Add context cache as a request level cache (#22294)
To avoid duplicated load of the same data in an HTTP request, we can set
a context cache to do that. i.e. Some pages may load a user from a
database with the same id in different areas on the same page. But the
code is hidden in two different deep logic. How should we share the
user? As a result of this PR, now if both entry functions accept
`context.Context` as the first parameter and we just need to refactor
`GetUserByID` to reuse the user from the context cache. Then it will not
be loaded twice on an HTTP request.
But of course, sometimes we would like to reload an object from the
database, that's why `RemoveContextData` is also exposed.
The core context cache is here. It defines a new context
```go
type cacheContext struct {
ctx context.Context
data map[any]map[any]any
lock sync.RWMutex
}
var cacheContextKey = struct{}{}
func WithCacheContext(ctx context.Context) context.Context {
return context.WithValue(ctx, cacheContextKey, &cacheContext{
ctx: ctx,
data: make(map[any]map[any]any),
})
}
```
Then you can use the below 4 methods to read/write/del the data within
the same context.
```go
func GetContextData(ctx context.Context, tp, key any) any
func SetContextData(ctx context.Context, tp, key, value any)
func RemoveContextData(ctx context.Context, tp, key any)
func GetWithContextCache[T any](ctx context.Context, cacheGroupKey string, cacheTargetID any, f func() (T, error)) (T, error)
```
Then let's take a look at how `system.GetString` implement it.
```go
func GetSetting(ctx context.Context, key string) (string, error) {
return cache.GetWithContextCache(ctx, contextCacheKey, key, func() (string, error) {
return cache.GetString(genSettingCacheKey(key), func() (string, error) {
res, err := GetSettingNoCache(ctx, key)
if err != nil {
return "", err
}
return res.SettingValue, nil
})
})
}
```
First, it will check if context data include the setting object with the
key. If not, it will query from the global cache which may be memory or
a Redis cache. If not, it will get the object from the database. In the
end, if the object gets from the global cache or database, it will be
set into the context cache.
An object stored in the context cache will only be destroyed after the
context disappeared.
2023-02-15 19:07:34 +05:30
|
|
|
{{avatar $.Context .Issue.Poster}}
|
Improve UI on mobile (#19546)
Start making the mobile experience not painful and be actually usable. This contains a few smaller changes to enhance this experience.
- Submit buttons on the review forms aren't columns anymore and are now allowed to be displayed on one row.
- The label/milestone & New Issue buttons were given each own row even tough, there's enough place to do it one the same row. This commit fixes that.
- The issues+Pull tab on repo's has a third item besides the label/milestone & New Issue buttons, the search bar. On desktop there's enough place to do this on one row, for mobile it isn't, currently it was using for each item a new row. This commits fixes that by only giving the searchbar a new row and have the other two buttons on the same row.
- The notification table will now be show a scrollbar instead of overflow.
- The repo buttons(Watch, Star, Fork) on mobile were showing quite big and the SVG wasn't even displayed on the same line, if the count of those numbers were too high it would even overflow. This commit removes the SVG, as there isn't any place to show them on the same row and allows them to have a new row if the counts of those buttons are high.
- The admin page can show you a lot of interesting information, on mobile the System Status + Configuration weren't properly displayed as the margin's were too high. This commit fixes that by reducing the margin to a number that makes sense on mobile.
- Fixes to not overflow the tables but instead force them to be scrollable.
- When viewing a issue or pull request, the comments aren't full-width but instead 80% and aligned to right, on mobile this is a annoyance as there isn't much width to begin with. This commits fixes that by forcing full-width and removing the avatars on the left side and instead including them inline in the comment header.
2022-05-01 21:41:21 +05:30
|
|
|
</a>
|
2020-10-31 18:47:52 +05:30
|
|
|
<span class="text grey">
|
2022-11-19 09:32:30 +05:30
|
|
|
{{template "shared/user/authorlink" .Issue.Poster}}
|
2022-06-28 02:28:46 +05:30
|
|
|
{{.locale.Tr "repo.issues.commented_at" (.Issue.HashTag|Escape) $createdStr | Safe}}
|
2020-10-31 18:47:52 +05:30
|
|
|
</span>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
2023-02-13 23:29:59 +05:30
|
|
|
<div class="comment-header-right actions gt-df gt-ac">
|
2021-12-05 20:34:02 +05:30
|
|
|
{{if gt .Issue.ShowRole 0}}
|
|
|
|
{{if (.Issue.ShowRole.HasRole "Writer")}}
|
Improve UI on mobile (#19546)
Start making the mobile experience not painful and be actually usable. This contains a few smaller changes to enhance this experience.
- Submit buttons on the review forms aren't columns anymore and are now allowed to be displayed on one row.
- The label/milestone & New Issue buttons were given each own row even tough, there's enough place to do it one the same row. This commit fixes that.
- The issues+Pull tab on repo's has a third item besides the label/milestone & New Issue buttons, the search bar. On desktop there's enough place to do this on one row, for mobile it isn't, currently it was using for each item a new row. This commits fixes that by only giving the searchbar a new row and have the other two buttons on the same row.
- The notification table will now be show a scrollbar instead of overflow.
- The repo buttons(Watch, Star, Fork) on mobile were showing quite big and the SVG wasn't even displayed on the same line, if the count of those numbers were too high it would even overflow. This commit removes the SVG, as there isn't any place to show them on the same row and allows them to have a new row if the counts of those buttons are high.
- The admin page can show you a lot of interesting information, on mobile the System Status + Configuration weren't properly displayed as the margin's were too high. This commit fixes that by reducing the margin to a number that makes sense on mobile.
- Fixes to not overflow the tables but instead force them to be scrollable.
- When viewing a issue or pull request, the comments aren't full-width but instead 80% and aligned to right, on mobile this is a annoyance as there isn't much width to begin with. This commits fixes that by forcing full-width and removing the avatars on the left side and instead including them inline in the comment header.
2022-05-01 21:41:21 +05:30
|
|
|
<div class="ui basic label role-label">
|
2022-06-28 02:28:46 +05:30
|
|
|
{{$.locale.Tr "repo.issues.collaborator"}}
|
2021-12-05 20:34:02 +05:30
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
{{if (.Issue.ShowRole.HasRole "Owner")}}
|
Improve UI on mobile (#19546)
Start making the mobile experience not painful and be actually usable. This contains a few smaller changes to enhance this experience.
- Submit buttons on the review forms aren't columns anymore and are now allowed to be displayed on one row.
- The label/milestone & New Issue buttons were given each own row even tough, there's enough place to do it one the same row. This commit fixes that.
- The issues+Pull tab on repo's has a third item besides the label/milestone & New Issue buttons, the search bar. On desktop there's enough place to do this on one row, for mobile it isn't, currently it was using for each item a new row. This commits fixes that by only giving the searchbar a new row and have the other two buttons on the same row.
- The notification table will now be show a scrollbar instead of overflow.
- The repo buttons(Watch, Star, Fork) on mobile were showing quite big and the SVG wasn't even displayed on the same line, if the count of those numbers were too high it would even overflow. This commit removes the SVG, as there isn't any place to show them on the same row and allows them to have a new row if the counts of those buttons are high.
- The admin page can show you a lot of interesting information, on mobile the System Status + Configuration weren't properly displayed as the margin's were too high. This commit fixes that by reducing the margin to a number that makes sense on mobile.
- Fixes to not overflow the tables but instead force them to be scrollable.
- When viewing a issue or pull request, the comments aren't full-width but instead 80% and aligned to right, on mobile this is a annoyance as there isn't much width to begin with. This commits fixes that by forcing full-width and removing the avatars on the left side and instead including them inline in the comment header.
2022-05-01 21:41:21 +05:30
|
|
|
<div class="ui basic label role-label">
|
2022-06-28 02:28:46 +05:30
|
|
|
{{$.locale.Tr "repo.issues.owner"}}
|
2021-12-05 20:34:02 +05:30
|
|
|
</div>
|
2020-09-10 23:39:14 +05:30
|
|
|
{{end}}
|
2021-12-05 20:34:02 +05:30
|
|
|
{{end}}
|
|
|
|
{{if not $.Repository.IsArchived}}
|
2023-04-08 18:45:22 +05:30
|
|
|
{{template "repo/issue/view_content/add_reaction" dict "ctxData" $ "ActionURL" (printf "%s/issues/%d/reactions" $.RepoLink .Issue.Index)}}
|
2023-04-07 20:09:08 +05:30
|
|
|
{{template "repo/issue/view_content/context_menu" dict "ctxData" $ "item" .Issue "delete" false "issue" true "diff" false "IsCommentPoster" $.IsIssuePoster}}
|
2020-10-31 18:47:52 +05:30
|
|
|
{{end}}
|
|
|
|
</div>
|
2015-08-12 14:34:23 +05:30
|
|
|
</div>
|
2023-02-23 07:54:24 +05:30
|
|
|
<div class="ui attached segment comment-body" role="article">
|
2021-05-23 19:44:03 +05:30
|
|
|
<div class="render-content markup" {{if or $.Permission.IsAdmin $.HasIssuesOrPullsWritePermission $.IsIssuePoster}}data-can-edit="true"{{end}}>
|
2015-12-08 04:00:52 +05:30
|
|
|
{{if .Issue.RenderedContent}}
|
|
|
|
{{.Issue.RenderedContent|Str2html}}
|
|
|
|
{{else}}
|
2022-06-28 02:28:46 +05:30
|
|
|
<span class="no-content">{{.locale.Tr "repo.issues.no_content"}}</span>
|
2015-12-08 04:00:52 +05:30
|
|
|
{{end}}
|
2015-08-12 14:34:23 +05:30
|
|
|
</div>
|
2023-02-19 09:36:14 +05:30
|
|
|
<div id="issue-{{.Issue.ID}}-raw" class="raw-content gt-hidden">{{.Issue.Content}}</div>
|
|
|
|
<div class="edit-content-zone gt-hidden" data-write="issue-{{.Issue.ID}}-write" data-preview="issue-{{.Issue.ID}}-preview" data-update-url="{{$.RepoLink}}/issues/{{.Issue.Index}}/content" data-context="{{.RepoLink}}" data-attachment-url="{{$.RepoLink}}/issues/{{.Issue.Index}}/attachments" data-view-attachment-url="{{$.RepoLink}}/issues/{{.Issue.Index}}/view-attachments"></div>
|
2021-04-11 09:16:37 +05:30
|
|
|
{{if .Issue.Attachments}}
|
2023-04-07 20:09:08 +05:30
|
|
|
{{template "repo/issue/view_content/attachments" dict "ctxData" $ "Attachments" .Issue.Attachments "Content" .Issue.RenderedContent}}
|
2021-04-11 09:16:37 +05:30
|
|
|
{{end}}
|
2015-08-12 14:34:23 +05:30
|
|
|
</div>
|
2017-12-04 04:44:26 +05:30
|
|
|
{{$reactions := .Issue.Reactions.GroupByType}}
|
|
|
|
{{if $reactions}}
|
2023-02-23 07:54:24 +05:30
|
|
|
<div class="ui attached segment reactions" role="note">
|
2023-04-08 18:45:22 +05:30
|
|
|
{{template "repo/issue/view_content/reactions" dict "ctxData" $ "ActionURL" (printf "%s/issues/%d/reactions" $.RepoLink .Issue.Index) "Reactions" $reactions}}
|
2017-12-04 04:44:26 +05:30
|
|
|
</div>
|
|
|
|
{{end}}
|
2015-12-08 04:00:52 +05:30
|
|
|
</div>
|
|
|
|
</div>
|
2015-08-12 16:14:09 +05:30
|
|
|
|
2022-08-31 21:28:54 +05:30
|
|
|
{{template "repo/issue/view_content/comments" .}}
|
2015-08-13 20:51:43 +05:30
|
|
|
|
2019-01-24 00:28:38 +05:30
|
|
|
{{if and .Issue.IsPull (not $.Repository.IsArchived)}}
|
2022-08-31 21:28:54 +05:30
|
|
|
{{template "repo/issue/view_content/pull".}}
|
2015-12-08 04:00:52 +05:30
|
|
|
{{end}}
|
2023-03-22 02:05:02 +05:30
|
|
|
|
2019-02-19 02:25:04 +05:30
|
|
|
{{if .IsSigned}}
|
2022-08-31 21:28:54 +05:30
|
|
|
{{if and (or .IsRepoAdmin .HasIssuesOrPullsWritePermission (not .Issue.IsLocked)) (not .Repository.IsArchived)}}
|
2020-04-11 03:31:41 +05:30
|
|
|
<div class="timeline-item comment form">
|
|
|
|
<a class="timeline-avatar" href="{{.SignedUser.HomeLink}}">
|
Add context cache as a request level cache (#22294)
To avoid duplicated load of the same data in an HTTP request, we can set
a context cache to do that. i.e. Some pages may load a user from a
database with the same id in different areas on the same page. But the
code is hidden in two different deep logic. How should we share the
user? As a result of this PR, now if both entry functions accept
`context.Context` as the first parameter and we just need to refactor
`GetUserByID` to reuse the user from the context cache. Then it will not
be loaded twice on an HTTP request.
But of course, sometimes we would like to reload an object from the
database, that's why `RemoveContextData` is also exposed.
The core context cache is here. It defines a new context
```go
type cacheContext struct {
ctx context.Context
data map[any]map[any]any
lock sync.RWMutex
}
var cacheContextKey = struct{}{}
func WithCacheContext(ctx context.Context) context.Context {
return context.WithValue(ctx, cacheContextKey, &cacheContext{
ctx: ctx,
data: make(map[any]map[any]any),
})
}
```
Then you can use the below 4 methods to read/write/del the data within
the same context.
```go
func GetContextData(ctx context.Context, tp, key any) any
func SetContextData(ctx context.Context, tp, key, value any)
func RemoveContextData(ctx context.Context, tp, key any)
func GetWithContextCache[T any](ctx context.Context, cacheGroupKey string, cacheTargetID any, f func() (T, error)) (T, error)
```
Then let's take a look at how `system.GetString` implement it.
```go
func GetSetting(ctx context.Context, key string) (string, error) {
return cache.GetWithContextCache(ctx, contextCacheKey, key, func() (string, error) {
return cache.GetString(genSettingCacheKey(key), func() (string, error) {
res, err := GetSettingNoCache(ctx, key)
if err != nil {
return "", err
}
return res.SettingValue, nil
})
})
}
```
First, it will check if context data include the setting object with the
key. If not, it will query from the global cache which may be memory or
a Redis cache. If not, it will get the object from the database. In the
end, if the object gets from the global cache or database, it will be
set into the context cache.
An object stored in the context cache will only be destroyed after the
context disappeared.
2023-02-15 19:07:34 +05:30
|
|
|
{{avatar $.Context .SignedUser}}
|
2019-02-19 02:25:04 +05:30
|
|
|
</a>
|
|
|
|
<div class="content">
|
|
|
|
<form class="ui segment form" id="comment-form" action="{{$.RepoLink}}/issues/{{.Issue.Index}}/comments" method="post">
|
|
|
|
{{template "repo/issue/comment_tab" .}}
|
|
|
|
{{.CsrfTokenHtml}}
|
|
|
|
<input id="status" name="status" type="hidden">
|
2020-05-15 00:45:21 +05:30
|
|
|
<div class="field footer">
|
|
|
|
<div class="text right">
|
|
|
|
{{if and (or .HasIssuesOrPullsWritePermission .IsIssuePoster) (not .DisableStatusChange)}}
|
|
|
|
{{if .Issue.IsClosed}}
|
2023-03-14 09:04:09 +05:30
|
|
|
<button id="status-button" class="ui green basic button" tabindex="6" data-status="{{.locale.Tr "repo.issues.reopen_issue"}}" data-status-and-comment="{{.locale.Tr "repo.issues.reopen_comment_issue"}}" data-status-val="reopen">
|
2022-06-28 02:28:46 +05:30
|
|
|
{{.locale.Tr "repo.issues.reopen_issue"}}
|
2023-03-14 09:04:09 +05:30
|
|
|
</button>
|
2020-05-15 00:45:21 +05:30
|
|
|
{{else}}
|
2023-03-16 20:41:31 +05:30
|
|
|
{{$closeTranslationKey := "repo.issues.close"}}
|
|
|
|
{{if .Issue.IsPull}}
|
|
|
|
{{$closeTranslationKey = "repo.pulls.close"}}
|
|
|
|
{{end}}
|
|
|
|
<button id="status-button" class="ui red basic button" tabindex="6" data-status="{{.locale.Tr $closeTranslationKey}}" data-status-and-comment="{{.locale.Tr "repo.issues.close_comment_issue"}}" data-status-val="close">
|
|
|
|
{{.locale.Tr $closeTranslationKey}}
|
2023-03-14 09:04:09 +05:30
|
|
|
</button>
|
2020-05-15 00:45:21 +05:30
|
|
|
{{end}}
|
2019-02-19 02:25:04 +05:30
|
|
|
{{end}}
|
2022-05-07 17:54:02 +05:30
|
|
|
<button class="ui green button loading-button" tabindex="5">
|
2022-06-28 02:28:46 +05:30
|
|
|
{{.locale.Tr "repo.issues.create_comment"}}
|
2020-05-15 00:45:21 +05:30
|
|
|
</button>
|
|
|
|
</div>
|
2019-02-19 02:25:04 +05:30
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
2022-08-31 21:28:54 +05:30
|
|
|
{{else if .Repository.IsArchived}}
|
2019-07-09 00:48:09 +05:30
|
|
|
<div class="ui warning message">
|
|
|
|
{{if .Issue.IsPull}}
|
2022-06-28 02:28:46 +05:30
|
|
|
{{.locale.Tr "repo.archive.pull.nocomment"}}
|
2019-07-09 00:48:09 +05:30
|
|
|
{{else}}
|
2022-06-28 02:28:46 +05:30
|
|
|
{{.locale.Tr "repo.archive.issue.nocomment"}}
|
2019-07-09 00:48:09 +05:30
|
|
|
{{end}}
|
|
|
|
</div>
|
2022-08-31 21:28:54 +05:30
|
|
|
{{end}}
|
2023-03-22 02:05:02 +05:30
|
|
|
{{else}} {{/* not .IsSigned */}}
|
|
|
|
{{if .Repository.IsArchived}}
|
|
|
|
<div class="ui warning message">
|
|
|
|
{{if .Issue.IsPull}}
|
|
|
|
{{.locale.Tr "repo.archive.pull.nocomment"}}
|
|
|
|
{{else}}
|
|
|
|
{{.locale.Tr "repo.archive.issue.nocomment"}}
|
|
|
|
{{end}}
|
2019-01-24 00:28:38 +05:30
|
|
|
</div>
|
|
|
|
{{else}}
|
|
|
|
<div class="ui warning message">
|
2022-06-28 02:28:46 +05:30
|
|
|
{{.locale.Tr "repo.issues.sign_in_require_desc" (.SignInLink|Escape) | Safe}}
|
2019-01-24 00:28:38 +05:30
|
|
|
</div>
|
|
|
|
{{end}}
|
2023-03-22 02:05:02 +05:30
|
|
|
{{end}}{{/* end if: .IsSigned */}}
|
|
|
|
</div>
|
2015-08-12 14:34:23 +05:30
|
|
|
</div>
|
|
|
|
|
2022-08-31 21:28:54 +05:30
|
|
|
{{template "repo/issue/view_content/sidebar" .}}
|
2015-08-20 02:01:28 +05:30
|
|
|
</div>
|
|
|
|
|
2023-04-03 15:36:57 +05:30
|
|
|
<template id="issue-comment-editor-template">
|
2015-08-20 02:01:28 +05:30
|
|
|
<div class="ui comment form">
|
2023-04-03 15:36:57 +05:30
|
|
|
{{template "shared/combomarkdowneditor" (dict
|
|
|
|
"locale" $.locale
|
|
|
|
"MarkdownPreviewUrl" (print .Repository.Link "/markup")
|
|
|
|
"MarkdownPreviewContext" .RepoLink
|
|
|
|
"TextareaName" "content"
|
|
|
|
"DropzoneParentContainer" ".ui.form"
|
|
|
|
)}}
|
|
|
|
|
2019-10-15 17:49:32 +05:30
|
|
|
{{if .IsAttachmentEnabled}}
|
2020-10-05 11:19:33 +05:30
|
|
|
<div class="field">
|
|
|
|
{{template "repo/upload" .}}
|
2019-10-15 17:49:32 +05:30
|
|
|
</div>
|
|
|
|
{{end}}
|
2023-04-03 15:36:57 +05:30
|
|
|
|
2020-05-15 00:45:21 +05:30
|
|
|
<div class="field footer">
|
|
|
|
<div class="text right edit">
|
2023-03-14 09:04:09 +05:30
|
|
|
<button class="ui basic secondary cancel button" tabindex="3">{{.locale.Tr "repo.issues.cancel"}}</button>
|
|
|
|
<button class="ui primary save button" tabindex="2">{{.locale.Tr "repo.issues.save"}}</button>
|
2020-05-15 00:45:21 +05:30
|
|
|
</div>
|
2015-12-08 04:00:52 +05:30
|
|
|
</div>
|
2015-08-20 02:01:28 +05:30
|
|
|
</div>
|
2023-04-03 15:36:57 +05:30
|
|
|
</template>
|
2015-08-20 02:01:28 +05:30
|
|
|
|
2021-01-21 19:21:17 +05:30
|
|
|
{{template "repo/issue/view_content/reference_issue_dialog" .}}
|
|
|
|
|
2023-02-19 09:36:14 +05:30
|
|
|
<div class="gt-hidden" id="no-content">
|
2022-06-28 02:28:46 +05:30
|
|
|
<span class="no-content">{{.locale.Tr "repo.issues.no_content"}}</span>
|
2015-12-08 04:00:52 +05:30
|
|
|
</div>
|
2016-12-25 21:49:25 +05:30
|
|
|
|
|
|
|
<div class="ui small basic delete modal">
|
|
|
|
<div class="ui icon header">
|
2021-03-22 09:34:19 +05:30
|
|
|
{{svg "octicon-trash"}}
|
2022-08-31 21:28:54 +05:30
|
|
|
{{.locale.Tr "repo.branch.delete" .HeadTarget}}
|
2016-12-25 21:49:25 +05:30
|
|
|
</div>
|
|
|
|
<div class="content">
|
2022-06-28 02:28:46 +05:30
|
|
|
<p>{{.locale.Tr "repo.branch.delete_desc" | Str2html}}</p>
|
2016-12-25 21:49:25 +05:30
|
|
|
</div>
|
|
|
|
{{template "base/delete_modal_actions" .}}
|
2017-03-15 06:40:35 +05:30
|
|
|
</div>
|