Merge pull request #2002 from wallabag/feature-display-itemsNumber

Feature display items number
This commit is contained in:
Jeremy Benoist
2016-09-03 16:13:08 +02:00
committed by GitHub
10 changed files with 95 additions and 5 deletions

View File

@ -308,6 +308,10 @@ nav input {
margin: 0 1rem;
}
span.numberItems {
float: right;
}
/* ==========================================================================
* 3 = Filters slider
* ========================================================================== */

View File

@ -49,6 +49,7 @@ wallabag_core:
language: en
rss_limit: 50
reading_speed: 1
cache_lifetime: 10
wallabag_user:
registration_enabled: "%fosuser_registration%"

View File

@ -40,3 +40,11 @@ swiftmailer:
transport: smtp
host: 'localhost'
port: 1025
# If you want to use cache for queries used in WallabagExtension
# Uncomment the following lines
#doctrine:
# orm:
# metadata_cache_driver: apcu
# result_cache_driver: apcu
# query_cache_driver: apcu

View File

@ -16,6 +16,9 @@ services:
wallabag.twig_extension:
class: Wallabag\CoreBundle\Twig\WallabagExtension
public: false
arguments:
- "@wallabag_core.entry_repository"
- "@security.token_storage"
tags:
- { name: twig.extension }