diff options
author | Matthias Loibl <mail@matthiasloibl.com> | 2016-11-10 11:53:29 +0100 |
---|---|---|
committer | Matthias Loibl <mail@matthiasloibl.com> | 2016-11-10 11:54:20 +0100 |
commit | 63ca42d17f0f3e005869fbc322271d77cf9e0fe9 (patch) | |
tree | 68b1b55310a69f5a0d65ff97b20642afb4de6a3f /templates | |
parent | c040f2fbb13ef5ba2c6a619322d4801e9f78c885 (diff) | |
download | gitea-63ca42d17f0f3e005869fbc322271d77cf9e0fe9.tar.gz gitea-63ca42d17f0f3e005869fbc322271d77cf9e0fe9.zip |
Fix bug that tries to load mistyped templates
Diffstat (limited to 'templates')
-rw-r--r-- | templates/admin/repo/list.tmpl | 2 | ||||
-rw-r--r-- | templates/repo/release/list.tmpl | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/templates/admin/repo/list.tmpl b/templates/admin/repo/list.tmpl index 8db51489d7..ccc958fe93 100644 --- a/templates/admin/repo/list.tmpl +++ b/templates/admin/repo/list.tmpl @@ -44,7 +44,7 @@ </table> </div> - {{template "base/paginage" .}} + {{template "base/paginate" .}} </div> </div> </div> diff --git a/templates/repo/release/list.tmpl b/templates/repo/release/list.tmpl index 477ab6b524..4879e04811 100644 --- a/templates/repo/release/list.tmpl +++ b/templates/repo/release/list.tmpl @@ -75,7 +75,7 @@ </li> {{end}} </ul> - {{template "base/paginage" .}} + {{template "base/paginate" .}} </div> </div> {{template "base/footer" .}} |