Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1033991
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T14:19:08+00:00 2026-05-16T14:19:08+00:00

I have to display different medical forms according to which state the user is

  • 0

I have to display different medical forms according to which state the user is in. There is also a default form that many of the states share. These medical forms are all written in Template Toolkit and they are included in larger templates. The state is available as a variable in a normalized form.

I need to select the state-specific template, if it exists, otherwise fall back to the default. How would I best go about doing this?

INCLUDE_PATH is already being used to control switching between site styles.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T14:19:09+00:00Added an answer on May 16, 2026 at 2:19 pm

    Something like this should do the job:

    main.tt:

    This is a main template [% GET state %]
    [% SET iname = state _ ".tt" %]
    [% TRY %]
    [% INCLUDE "$iname" %]
    [% CATCH %]
    [% INCLUDE default.tt %]
    [% END %]
    End of main template
    

    default.tt:

    This is default template
    

    s1.tt:

    This is template for state s1.
    

    t.pl:

    #! /usr/bin/perl
    use 5.006;
    use strict;
    use warnings;
    
    use Template;
    my $tt = Template->new();
    $tt->process("main.tt", { state => "s1" })
      || die $tt->error, "\n";
    print "---------\n";
    $tt->process("main.tt", { state => "unknown" })
      || die $tt->error, "\n";
    

    When running t.pl:

    This is a main template s1
    This is template for state s1.
    End of main template
    ---------
    This is a main template unknown
    This is default template
    End of main template
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have some user-submitted variables that I want to display in a different part
I have several similar user controls which display listviews of respectively different data entities.
I have a TreeView that permits the user to select different items. The display
I have a modal that displays over a UITableViewController which should display different text
I have this pseudo code to display different content based on user selection, which
I have a JSP portlet that needs to display different markup according to the
I have a site I made really fast that uses floats to display different
I have a view which I want to display different things based on a
I have one UIImageView that I use to display different images at different points
I have a generic index.php that uses $_GET variables to display different pages, but

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.