diff options
| author | Magnus Hagander | 2020-08-30 14:24:47 +0000 |
|---|---|---|
| committer | Magnus Hagander | 2020-08-30 14:26:19 +0000 |
| commit | 940d753e272e3f742c24c7c48682a7937e58c33f (patch) | |
| tree | c42d169662a1aa13491c4587b20cade748f12b3d | |
| parent | 0aef73ef507f3a35552d90959738e0d1f62d56a4 (diff) | |
Fix title for field lastget
In particular it was terribly labeled in the moderation interface. Make
it better and more consistent between the two interfaces.
| -rw-r--r-- | hamnadmin/hamnadmin/register/templates/index.html | 2 | ||||
| -rw-r--r-- | hamnadmin/hamnadmin/register/templates/moderate.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/hamnadmin/hamnadmin/register/templates/index.html b/hamnadmin/hamnadmin/register/templates/index.html index b9c0d77..ac80f7b 100644 --- a/hamnadmin/hamnadmin/register/templates/index.html +++ b/hamnadmin/hamnadmin/register/templates/index.html @@ -33,7 +33,7 @@ You have the following blog(s) registered: {%endif%} </td> <td>Feed: <a href="{{blog.feedurl}}">{{blog.feedurl}}</a><br/>Blog: <a href="{{blog.blogurl}}">{{blog.blogurl}}</a><br/> -Last http get: {{blog.lastget|date:"Y-m-d H:i:s"}}<br/> +Last successful http fetch dated: {{blog.lastget|date:"Y-m-d H:i:s"}}<br/> </td> <td class="feedstatus"> diff --git a/hamnadmin/hamnadmin/register/templates/moderate.html b/hamnadmin/hamnadmin/register/templates/moderate.html index a102e18..77c9f18 100644 --- a/hamnadmin/hamnadmin/register/templates/moderate.html +++ b/hamnadmin/hamnadmin/register/templates/moderate.html @@ -44,7 +44,7 @@ {%else%} No entries have been syndicated from this blog yet. {%endif%} - <br/>Fetching entries since {{blog.lastget|date:"Y-m-d H:i:s"}}. + <br/>Last successful http fetch dated: {{blog.lastget|date:"Y-m-d H:i:s"}} (fetch date or Last-Modified http header). </div> </div> <div class="row"> |
