<%= $pseudonym->key%> |
<%= $account%> |
% my ($actionModify, $actionRemove) = " ";
% if ($modifiable eq "yes") {
%my $modify_text = l("MODIFY"); # Localized text
%my $csrf_token = "TOKEN"; # CSRF token for security
%my $pseudonyms_entry_name = $pseudonym->key; # pseudonyms_entry name extracted from the data structure
%$actionModify = qq{
%
%
%
% };
% }
% if ($removable eq "yes") {
%my $remove_text = l("REMOVE"); # Localized text
%my $csrf_token = "TOKEN"; # CSRF token for security
%my $pseudonyms_entry_name = $pseudonym->key; # pseudonyms_entry name extracted from the data structure
%$actionRemove = qq{
%
%
%
% };
% }
<%= $c->render_to_string(inline => $actionModify) %> |
<%= $c->render_to_string(inline => $actionRemove) %> |
% }