diff options
author | Unknwon <joe2010xtmf@163.com> | 2014-07-26 18:37:18 -0400 |
---|---|---|
committer | Unknwon <joe2010xtmf@163.com> | 2014-07-26 18:37:18 -0400 |
commit | 5e8138341357f367868a32b631495c9d5a286477 (patch) | |
tree | fb36040422534e051ac381cde594ff1a208e4195 /templates/repo/view_file.tmpl | |
parent | 02a81ddb6252d1a08900d548ddb63e41bcb0b8ef (diff) | |
download | gitea-5e8138341357f367868a32b631495c9d5a286477.tar.gz gitea-5e8138341357f367868a32b631495c9d5a286477.zip |
Git installation check, show image in single file view, show short SHA1 instead of 40-length string, complete log module
Diffstat (limited to 'templates/repo/view_file.tmpl')
-rw-r--r-- | templates/repo/view_file.tmpl | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/templates/repo/view_file.tmpl b/templates/repo/view_file.tmpl index be54419404..fb05945b9f 100644 --- a/templates/repo/view_file.tmpl +++ b/templates/repo/view_file.tmpl @@ -15,6 +15,14 @@ <div class="{{if .ReadmeExist}}panel-content markdown{{end}} code-view"> {{if .ReadmeExist}} {{.FileContent | Str2html}} + {{else if not .IsFileText}} + <div class="view-raw"> + {{if .IsImageFile}} + <img src="{{.FileLink}}"> + {{else}} + <a href="{{.FileLink}}" rel="nofollow" class="btn btn-gray btn-radius">View Raw</a> + {{end}} + </div> {{else if .FileSize}} <table> <tbody> |