New to Web2py, so my question might not be too clear. I'm trying to make a shipment tracking page, and I have a simple database with a tracking number and a shipper ID. Following the examples, my application can display and add new records to the shipment db. Now I want to add links to the displayed records that will take you to the carrier's tracking page for that tracking number. The tracking page URL will be created from a default string for each shipper to which the tracking number will be appended. How can I make the results into links to the appropriate tracking page?
|
If you are displaying the record via SQLFORM, Crud, SQLTABLE, or SQLFORM.grid, you could set the "represent" attribute of the tracking number field to display a link:
This assumes you are storing the shipper URLs in a separate table. |
|||||||
|
|
I changed it to this, and it almost works:
shipment_id is a link, but it points to 'http://127.0.0.1:8000/tracker/default/www.bing.com/search?q=trumpet', where 'www.bing.com/search?q=' and 'trumpet' are the carrier.url and shipment.shipment_id values respectively (just for testing). How can I leave off 'http://127.0.0.1:8000/tracker/default/'? |
|||
|
|
|
Ok, ended up with:
There were two problems. First was the syntax of the href. The version in the answer I added above didn't give an error, but caused the link address problem. Second, the URLs were being entered without the "http://". This caused the same link address issue. |
|||
|
|