mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 20:21:47 +01:00 
			
		
		
		
	work on #1548
This commit is contained in:
		
							parent
							
								
									f2de4d5c04
								
							
						
					
					
						commit
						a00194e665
					
				| @ -521,6 +521,7 @@ func ViewIssue(ctx *middleware.Context) { | ||||
| 
 | ||||
| 	ctx.Data["Issue"] = issue | ||||
| 	ctx.Data["IsIssueOwner"] = ctx.Repo.IsAdmin() || (ctx.IsSigned && issue.IsPoster(ctx.User.Id)) | ||||
| 	ctx.Data["SignInLink"] = setting.AppSubUrl + "/user/login" | ||||
| 	ctx.HTML(200, ISSUE_VIEW) | ||||
| } | ||||
| 
 | ||||
|  | ||||
| @ -1,7 +1,7 @@ | ||||
| <div class="field"> | ||||
|   <div class="ui top attached tabular menu" data-write="write" data-preview="preview"> | ||||
|     <a class="active item" data-tab="write">{{.i18n.Tr "repo.release.write"}}</a> | ||||
|     <a class="item" data-tab="preview"  data-url="/api/v1/markdown" data-context="{{.RepoLink}}">{{.i18n.Tr "repo.release.preview"}}</a> | ||||
|     <a class="item" data-tab="preview"  data-url="{{AppSubUrl}}/api/v1/markdown" data-context="{{.RepoLink}}">{{.i18n.Tr "repo.release.preview"}}</a> | ||||
|   </div> | ||||
|   <div class="ui bottom attached active tab segment" data-tab="write"> | ||||
|     <textarea id="content" name="content"></textarea> | ||||
| @ -12,5 +12,5 @@ | ||||
| </div> | ||||
| {{if .IsAttachmentEnabled}} | ||||
| <div class="attachments"></div> | ||||
| <div class="ui basic button dropzone" id="dropzone" data-upload-url="/issues/attachments" data-accepts="{{.AttachmentAllowedTypes}}" data-max-file="{{.AttachmentMaxFiles}}" data-max-size="2" data-default-message="{{.i18n.Tr "dropzone.default_message"}}" data-invalid-input-type="{{.i18n.Tr "dropzone.invalid_input_type"}}" data-file-too-big="{{.i18n.Tr "dropzone.file_too_big"}}" data-remove-file="{{.i18n.Tr "dropzone.remove_file"}}"></div> | ||||
| <div class="ui basic button dropzone" id="dropzone" data-upload-url="{{AppSubUrl}}/issues/attachments" data-accepts="{{.AttachmentAllowedTypes}}" data-max-file="{{.AttachmentMaxFiles}}" data-max-size="2" data-default-message="{{.i18n.Tr "dropzone.default_message"}}" data-invalid-input-type="{{.i18n.Tr "dropzone.invalid_input_type"}}" data-file-too-big="{{.i18n.Tr "dropzone.file_too_big"}}" data-remove-file="{{.i18n.Tr "dropzone.remove_file"}}"></div> | ||||
| {{end}} | ||||
| @ -69,7 +69,7 @@ | ||||
| 					<div class="ui bottom attached segment"> | ||||
| 						<div class="ui small images"> | ||||
| 							{{range .Issue.Attachments}} | ||||
| 						  <a target="_blank" href="/attachments/{{.UUID}}"><img class="ui image" src="/attachments/{{.UUID}}"></a> | ||||
| 						  <a target="_blank" href="{{AppSubUrl}}/attachments/{{.UUID}}"><img class="ui image" src="{{AppSubUrl}}/attachments/{{.UUID}}"></a> | ||||
| 						  {{end}} | ||||
| 						</div> | ||||
| 					</div> | ||||
| @ -179,8 +179,8 @@ | ||||
| 		  </div> | ||||
| 		  {{else}} | ||||
| 		  <div class="ui warning message"> | ||||
| 		    <a href="/user/sign_up" class="ui green button">{{.i18n.Tr "repo.issues.sign_up_for_free"}}</a> | ||||
| 		    {{.i18n.Tr "repo.issues.sign_in_require_desc" "/user/login" | Safe}} | ||||
| 		    <a href="{{AppSubUrl}}/user/sign_up" class="ui green button">{{.i18n.Tr "repo.issues.sign_up_for_free"}}</a> | ||||
| 		    {{.i18n.Tr "repo.issues.sign_in_require_desc" .SignInLink | Safe}} | ||||
| 		  </div> | ||||
| 		  {{end}} | ||||
|   	</ui> | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user