1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-10-10 19:32:07 +00:00

Show untagged entries count on tag list

Closes #3235

Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
This commit is contained in:
Kevin Decherf 2018-09-02 16:43:49 +02:00 committed by Jeremy Benoist
parent 7e5b7e029a
commit ad51743e8b
No known key found for this signature in database
GPG key ID: BCA73962457ACC3C
4 changed files with 19 additions and 2 deletions

View file

@ -87,6 +87,8 @@ class TagController extends Controller
{
$tags = $this->get('wallabag_core.tag_repository')
->findAllFlatTagsWithNbEntries($this->getUser()->getId());
$untagged = $this->get('wallabag_core.entry_repository')
->countUntaggedEntriesForUser($this->getUser()->getId());
$renameForms = [];
foreach ($tags as $tag) {
@ -96,6 +98,7 @@ class TagController extends Controller
return $this->render('WallabagCoreBundle:Tag:tags.html.twig', [
'tags' => $tags,
'renameForms' => $renameForms,
'untagged' => $untagged,
]);
}