Hi,
I've created a page on our portal website where we can view the content of a knowledge article, using the following blog https://colinvermander.com/2017/06/08/dynamics-365-portals-customize-knowledge-articles/.
However, the page now displays only very basic information (title and content).
I'd like this page to show the content of a specific form instead. I've already created an entity form for this but I don't know how to make it appear on the web page.
This is the code of my web template.
{% assign article = entities.knowledgearticle[request.params.id] %}<div class="container"><div class="page-heading">
{% include 'Breadcrumbs' title: article.title %}<div class="page-header"><h1>
{% if article %}{{article.title}}{% else %}No article found{% endif %}<div class="pull-right"><div role="toolbar" class="btn-toolbar"><div class="btn-group"><a href="javascript:window.print()" class="btn btn-default btn-sm"><span class="fa fa-print"></span> {{ snippets['Knowledge Management - Print Button Label'] }}</a></div></div></div></h1></div></div><div class="row"><div class="col-md-12"><div class="page-copy">
{% if article %}
{{ article.content }}
{% endif %}</div></div></div></div>
Any advice?
Kind regards,
Nina







