I was looking and analyzing, to see the tokens you must make the query with the api webjs of ethereum making the call with your JSON ABI contract.
Load webjs api on html file first:
<script src="web3.min.js"></script>
then execute this JS example:
var web3 = new Web3(new Web3.providers.HttpProvider("http://RPCBlockchainIP:RPCBlockchainPort"));
var erc20Abi = [Your JSON ABI Contract];
var tokenContract = web3.eth.contract(erc20Abi).at("Your Contract Token Address");
var tokenBalance = tokenContract.balanceOf.call("Your Account Address to Test");
console.log(tokenBalance);