diff options
Diffstat (limited to 'template/html/history_entries.html')
-rw-r--r-- | template/html/history_entries.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/template/html/history_entries.html b/template/html/history_entries.html index 9824f11..0888778 100644 --- a/template/html/history_entries.html +++ b/template/html/history_entries.html @@ -1,19 +1,19 @@ -{{ define "title"}}{{ t "History" }} ({{ .total }}){{ end }} +{{ define "title"}}{{ t "page.history.title" }} ({{ .total }}){{ end }} {{ define "content"}} <section class="page-header"> - <h1>{{ t "History" }} ({{ .total }})</h1> + <h1>{{ t "page.history.title" }} ({{ .total }})</h1> {{ if .entries }} <ul> <li> - <a href="{{ route "flushHistory" }}">{{ t "Flush history" }}</a> + <a href="{{ route "flushHistory" }}">{{ t "menu.flush_history" }}</a> </li> </ul> {{ end }} </section> {{ if not .entries }} - <p class="alert alert-info">{{ t "There is no history at the moment." }}</p> + <p class="alert alert-info">{{ t "alert.no_history" }}</p> {{ else }} <div class="items"> {{ range .entries }} |