diff options
Diffstat (limited to 'client/html')
| -rw-r--r-- | client/html/pool.tpl | 2 | ||||
| -rw-r--r-- | client/html/pools_page.tpl | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/client/html/pool.tpl b/client/html/pool.tpl index 5af10c9..e1e5311 100644 --- a/client/html/pool.tpl +++ b/client/html/pool.tpl @@ -1,5 +1,5 @@ <div class='content-wrapper' id='pool'> - <h1><%- ctx.pool.first_name %></h1> + <h1><%- ctx.pool.names[0] %></h1> <nav class='buttons'><!-- --><ul><!-- --><li data-name='summary'><a href='<%- ctx.formatClientLink('pool', ctx.pool.id) %>'>Summary</a></li><!-- diff --git a/client/html/pools_page.tpl b/client/html/pools_page.tpl index 6b39483..0d81180 100644 --- a/client/html/pools_page.tpl +++ b/client/html/pools_page.tpl @@ -11,9 +11,9 @@ </th> <th class='post-count'> <% if (ctx.parameters.query == 'sort:post-count') { %> - <a href='<%- ctx.formatClientLink('pools', {query: '-sort:post-count'}) %>'>Post Count</a> + <a href='<%- ctx.formatClientLink('pools', {query: '-sort:post-count'}) %>'>Post count</a> <% } else { %> - <a href='<%- ctx.formatClientLink('pools', {query: 'sort:post-count'}) %>'>Post Count</a> + <a href='<%- ctx.formatClientLink('pools', {query: 'sort:post-count'}) %>'>Post count</a> <% } %> </th> <th class='creation-time'> |