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

  • SEARCH
  • Home
  • 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 7916009
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T14:38:54+00:00 2026-06-03T14:38:54+00:00

I am trying to display content of two sequences on web page. First one

  • 0

I am trying to display content of two sequences on web page. First one of them contains name of the picture, and the second one contains URL to the image. The problem’s start when I try to iterate through these two lists (using foreach-like for loop) – this result in either multiple picture names, or multiple pictures (in short, a total mess). Here is example of my page rendering code (sequences are converted to vector using (vec(flatten (sequence))) ):

    (defn view-output []
  (view-layout
   [:h2 "default images"]


   [:form {:method "post" :action "/"}
     ( for [manganame ["image1" "image2"]]
       [:input {:type "text" :value manganame}]) 

       (for [manga-image["image1URL" "image2URL"]]
         [:img {:src manga-image}[:br] [:br][:br]])  ] ))

This code will first display names, then pictures. Can anyone suggest a way for inserting these values next to each other, ot on top of each other (perhaps table like implementation)

                               Image_name1
                               Picture1

                             Image_name2
                               Picture2

or

                    Image_name1      Image_name2
                      Picture1         Picture2

Thanks

  • 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-06-03T14:38:57+00:00Added an answer on June 3, 2026 at 2:38 pm

    I just realized that the correct code is:

    (defn view-output []
      (view-layout
        [:h2 "default images"]
        [:form {:method "post" :action "/"}
        (interleave 
          (for [manga-name ["image1" "image2"]]
               [:input {:type "text" :value manga-name}]) 
          (for [manga-image["image1URL" "image2URL"]]
               [:img {:src manga-image}[:br] [:br][:br]]))]))
    

    As you want a list of [:input][:img][:input][:img].

    My previous answer was returning [:input :img][:input :img]:

    (defn view-output []
      (view-layout
        [:h2 "default images"]
        [:form {:method "post" :action "/"}
        (for [[manganame manga-img] (map vector ["image1" "image2"] ["image1URL" "image2URL"]))]
          (concat 
             [:input {:type "text" :value manganame}] 
             [:img {:src manga-image} [:br ] [:br ] [:br ]]))]))
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Im trying to display some files in a web page so the user can
I'm trying to design a page that has two columns of content, div#left and
I've being trying to display two graphics in one screen but I'm not able.
I am trying to dis[play two imgages in a tablelayout. However the second picture
Hello I am trying to use the Ennui Content slider to display two images
Ive been trying to display formatted content blocks from a xml file with no
I am tyring to display a TextView that contains two sentences and I want
What I'm trying to do: I have two files: One is the header.php which
Hello I am trying to display two different html pages through the same UIViewController
I am trying to make general purpose image display class which receives two parameters,

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.