Each time I use Visual Studio to generate a display-template using scaffolding I get something like this:
<fieldset>
...
<div class="display-label">Property</div>
<div class="display-field">@Model.Property</div>
...
</fieldset>
Is there any way to change this template so that it use a HTML definition list instead?
<dl>
...
<dt>Property</dt>
<dd>@Model.Property</dd>
...
</dl>
I know you could use DisplayTemplates, but I want the generated code to be default in all my projects.