diff options
author | Nicolas LÅ“uillet <nicolas.loeuillet@gmail.com> | 2013-08-02 13:51:22 +0200 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas.loeuillet@gmail.com> | 2013-08-02 13:51:22 +0200 |
commit | da2c5d6fc33587c775a7d8a738c2c18de41f83b2 (patch) | |
tree | 99d31284555212512328f773ad8053c8611d7273 /tpl | |
parent | 408f3df28e0b872847d2c4b6a91c63bbd18cd7f1 (diff) | |
download | wallabag-da2c5d6fc33587c775a7d8a738c2c18de41f83b2.tar.gz wallabag-da2c5d6fc33587c775a7d8a738c2c18de41f83b2.tar.zst wallabag-da2c5d6fc33587c775a7d8a738c2c18de41f83b2.zip |
display URL at home poche
Diffstat (limited to 'tpl')
-rw-r--r-- | tpl/entries.html | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/tpl/entries.html b/tpl/entries.html index 8526a3c9..83e58c74 100644 --- a/tpl/entries.html +++ b/tpl/entries.html | |||
@@ -7,11 +7,14 @@ | |||
7 | </h2> | 7 | </h2> |
8 | <div class="tools"> | 8 | <div class="tools"> |
9 | <ul> | 9 | <ul> |
10 | <li><a title="toggle mark as read" class="tool archive {if="$value.is_read == '0'"}archive-off{/if}" onclick="toggle_archive(this, {$value.id})"><span></span></a></li> | 10 | <li> |
11 | <li><a title="toggle favorite" class="tool fav {if="$value.is_fav == '0'"}fav-off{/if}" onclick="toggle_favorite(this, {$value.id})"><span></span></a></li> | 11 | <a title="toggle mark as read" class="tool archive {if="$value.is_read == '0'"}archive-off{/if}" onclick="toggle_archive(this, {$value.id})"><span></span></a></li> |
12 | <li><form method="post" onsubmit="return confirm('Are you sure?')" style="display: inline;"><input type="hidden" name="token" id="token" value="<?php echo Session::getToken(); ?>" /><input type="hidden" id="action" name="action" value="delete" /><input type="hidden" id="view" name="view" value="{$view}" /><input type="hidden" id="id" name="id" value="{$value.id}" /><input type="submit" class="delete" title="toggle delete" /></form></li> | 12 | <li><a title="toggle favorite" class="tool fav {if="$value.is_fav == '0'"}fav-off{/if}" onclick="toggle_favorite(this, {$value.id})"><span></span></a></li> |
13 | <li><form method="post" onsubmit="return confirm('Are you sure?')" style="display: inline;"><input type="hidden" name="token" id="token" value="<?php echo Session::getToken(); ?>" /><input type="hidden" id="action" name="action" value="delete" /><input type="hidden" id="view" name="view" value="{$view}" /><input type="hidden" id="id" name="id" value="{$value.id}" /><input type="submit" class="delete" title="toggle delete" /></form> | ||
14 | </li> | ||
13 | </ul> | 15 | </ul> |
14 | </div> | 16 | </div> |
17 | <div class="url">{$value.url}</div> | ||
15 | </span> | 18 | </span> |
16 | </div> | 19 | </div> |
17 | {/loop} | 20 | {/loop} |