hi
nopcomerce 4 point 5

i want to display UserAgreementText on order details page just near the download link
order details page: \Views\Order\Details.cshtml

code from there:
@if (item.LicenseId > 0)
{
<div class="download license">
<a href="@Url.RouteUrl("GetLicense", new {orderItemId = item.OrderItemGuid})">@T("DownloadableProducts.Fields.DownloadLicense")</a>
</div>
}


can we do it without touching the source code?
can you please give me a code how to do it?