gitea源码

upload.tmpl 648B

1234567891011121314151617181920
  1. {{template "base/head" .}}
  2. <div role="main" aria-label="{{.Title}}" class="page-content repository file editor upload">
  3. {{template "repo/header" .}}
  4. <div class="ui container">
  5. {{template "base/alert" .}}
  6. <form class="ui comment form form-fetch-action" method="post" action="{{.CommitFormOptions.TargetFormAction}}">
  7. {{.CsrfTokenHtml}}
  8. {{template "repo/editor/common_top" .}}
  9. <div class="repo-editor-header">
  10. {{template "repo/editor/common_breadcrumb" .}}
  11. </div>
  12. <div class="field">
  13. {{template "repo/upload" .}}
  14. </div>
  15. {{template "repo/editor/commit_form" .}}
  16. </form>
  17. </div>
  18. </div>
  19. {{template "base/footer" .}}