If there are windows, what can you see outside, what are the surroundings like?
This commit is contained in:
parent
6dc67b4362
commit
4c707a3c89
2 changed files with 10 additions and 1 deletions
|
@ -2,6 +2,14 @@
|
||||||
|
|
||||||
multiplayer budget for the f20/anarchive project. forked from feral admin
|
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 server’s webroot.
|
||||||
|
|
||||||
|
bug reports and issues can be found at https://repo.fo.am/foam/feral-budget/-/issues
|
||||||
|
|
||||||
# authors
|
# authors
|
||||||
- kate rich
|
- kate rich
|
||||||
- nik gaffney
|
- nik gaffney
|
||||||
|
|
|
@ -915,6 +915,7 @@ END
|
||||||
$display_running = sprintf "%.2f",$running;
|
$display_running = sprintf "%.2f",$running;
|
||||||
$display_running =~ s/(\d)(?=(\d{3})+(\D|$))/$1\,/g; ## add commma
|
$display_running =~ s/(\d)(?=(\d{3})+(\D|$))/$1\,/g; ## add commma
|
||||||
|
|
||||||
|
print_subtotal(" "); # spacing before running lines
|
||||||
print_subtotal("RUNNING total IN:", "€$display_running");
|
print_subtotal("RUNNING total IN:", "€$display_running");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -928,7 +929,7 @@ END
|
||||||
$display_surplus =~ s/(\d)(?=(\d{3})+(\D|$))/$1\,/g; ## add commma
|
$display_surplus =~ s/(\d)(?=(\d{3})+(\D|$))/$1\,/g; ## add commma
|
||||||
|
|
||||||
print_subtotal("RUNNING total OUT:","€$display_runningex");
|
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");
|
print_subtotal("BALANCE OF FINANCIAL TRADE:"," €$display_surplus");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue