If there are windows, what can you see outside, what are the surroundings like?

This commit is contained in:
nik gaffney 2021-08-29 14:05:05 +02:00
parent 6dc67b4362
commit 4c707a3c89
2 changed files with 10 additions and 1 deletions

View file

@ -2,6 +2,14 @@
multiplayer budget for the f20/anarchive project. forked from feral admin
## installation & configuration
copy the budget.pl script to your cgi-bin directory and configure the relevant paths, database details and other configuration settings in the budget.config.pl file. by default the settings should be in the same directory and not executable.
the css files are specified by url so a local file needs be accessible from the servers webroot.
bug reports and issues can be found at https://repo.fo.am/foam/feral-budget/-/issues
# authors
- kate rich
- nik gaffney

View file

@ -915,6 +915,7 @@ END
$display_running = sprintf "%.2f",$running;
$display_running =~ s/(\d)(?=(\d{3})+(\D|$))/$1\,/g; ## add commma
print_subtotal(" "); # spacing before running lines
print_subtotal("RUNNING total IN:", "€$display_running");
}
}
@ -928,7 +929,7 @@ END
$display_surplus =~ s/(\d)(?=(\d{3})+(\D|$))/$1\,/g; ## add commma
print_subtotal("RUNNING total OUT:","€$display_runningex");
print_subtotal(" "," "); # spacing between running & balance lines
print_subtotal(" "); # spacing between running & balance lines
print_subtotal("BALANCE OF FINANCIAL TRADE:"," €$display_surplus");
}