22 lines
362 B
Perl
22 lines
362 B
Perl
package WebGUI::Help::TransactionLog;
|
|
|
|
our $HELP = {
|
|
'purchase history' => {
|
|
title => 'help purchase history template title',
|
|
body => 'help purchase history template body',
|
|
related => [
|
|
{
|
|
tag => 'template language',
|
|
namespace => 'Asset_Template'
|
|
},
|
|
{
|
|
tag => 'templates manage',
|
|
namespace => 'Asset_Template'
|
|
}
|
|
]
|
|
},
|
|
|
|
};
|
|
|
|
1;
|
|
|