Skip to content
Snippets Groups Projects
content.tt2.html 908 B


[% IF action == 'select_sp' %]
 [% TRY %]
  [% PROCESS 'templates/web/select_sp.tt2.html' %]
 [% CATCH %]
  An error occured
 [% END %]

[% ELSIF action == 'account_wizard' %]
 [% TRY %]
  [% PROCESS 'templates/web/account_wizard.tt2.html' %]
 [% CATCH %]
  An error occured
 [% END %]
 
 [% ELSIF action == 'select_sp' %]
 [% TRY %]
  [% PROCESS 'templates/web/select_sp.tt2.html' %]
 [% CATCH %]
  An error occured
 [% END %]
 
[% ELSIF action == 'generate_token' %]
 [% TRY %]
  [% PROCESS 'templates/web/generate_token.tt2.html' %]
 [% CATCH %]
  An error occured
 [% END %]

[% ELSIF action == 'validate_token' %]
 [% TRY %]
  [% PROCESS 'templates/web/validate_token.tt2.html' %]
 [% CATCH %]
  An error occured
 [% END %]
 
 [% ELSIF action == 'home' %]
 [% TRY %]
  [% PROCESS 'templates/web/home.tt2.html' %]
 [% CATCH %]
  An error occured
 [% END %]

[% ELSE %]
Error: unknown action

[% END %]