This page provides an example of action links being used in a table.

#if ($customers) #foreach( $customer in $customers ) #if( $velocityCount % 2 == 0) #else #end #end
ID Customer Name Holdings Edit Delete
$customer.id $customer.name $format.currency($customer.holdings) Edit Delete
#end #if ($customerDetail)

Customer Details
Name $customerDetail.name
Email  $format.email($customerDetail.email, "style='{text-decoration:none;}'")
Age $format.string($customerDetail.age)
Investments $format.string($customerDetail.investments)
Holdings $format.currency($customerDetail.holdings)
Date Joined $format.date($customerDetail.dateJoined, "dd MMM yyyy")
Active $customerDetail.active
#end