I am editing the "Quote" visualforce page template and needed to add a column for Discount. This field gives the percent per-item on the OpportunityLineItem, much like Quantity. I keep getting the error (in subject field) and can't figure why.
<apex:repeat value="{!relatedTo.OpportunityLineItems}" var="line">
<tr>
<td>{!line.PricebookEntry.Name}</td>
<td>{!line.Description}</td>
<td ALIGN="center"><img src='{!line.PricebookEntry.Product2.URL_Picture__c}'/></td>
<td>{!line.Quantity}</td>
<td><apex:OutputField value="{!line.Discount}"/></td>
<td><apex:OutputField value="{!line.TotalPrice}"/></td>
</tr>
</apex:repeat>