mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-11-04 05:15:39 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			31 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Twig
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Twig
		
	
	
	
	
	
// date range picker configuration:
 | 
						|
var dateRangeConfig = {
 | 
						|
    startDate: moment("{{ picker.start }}"),
 | 
						|
    endDate: moment("{{ picker.end }}"),
 | 
						|
    linkTitle: "{{ linkTitle }}",
 | 
						|
    URL: "{{ route('daterange') }}",
 | 
						|
    firstDate: moment("{{ firstDate }}"),
 | 
						|
    currentPeriod: "{{ picker.current }}",
 | 
						|
    previousPeriod: "{{ picker.previous }}",
 | 
						|
    nextPeriod: "{{ picker.next }}",
 | 
						|
    everything: '{{ 'everything'|_|escape }}',
 | 
						|
    customRangeLabel: '{{ 'customRange'|_|escape }}',
 | 
						|
    applyLabel: '{{ 'apply'|_|escape }}',
 | 
						|
    cancelLabel: '{{ 'cancel'|_|escape }}',
 | 
						|
    fromLabel: '{{ 'from'|_|escape }}',
 | 
						|
    toLabel: '{{ 'to'|_|escape }}',
 | 
						|
    ranges: {{ picker.ranges|json_encode|raw }}
 | 
						|
};
 | 
						|
 | 
						|
var language = "{{ language|escape }}";
 | 
						|
var currencyCode = '{{ currencyCode|escape('js') }}';
 | 
						|
var currencySymbol = '{{ currencySymbol|escape('js') }}';
 | 
						|
var mon_decimal_point = "{{ localeconv.mon_decimal_point|escape('js') }}";
 | 
						|
var mon_thousands_sep = "{{ localeconv.mon_thousands_sep|escape('js') }}";
 | 
						|
var frac_digits = {{ localeconv.frac_digits }};
 | 
						|
var noDataForChart = '{{ trans('firefly.no_data_for_chart')|escape }}';
 | 
						|
var showFullList = '{{ trans('firefly.show_full_list') }}';
 | 
						|
var showOnlyTop = '{{ trans('firefly.show_only_top',{number:listLength}) }}';
 | 
						|
var accountingConfig = {{ accounting|json_encode|raw }};
 | 
						|
var token = '{{ csrf_token() }}';
 |