So I have some simple views (Lists, Create/Edit) in my project 'root' and I want to use most of the same view in an admin area(real MVC area). The admin view will only have a few differences. So my two main thoughts are:
Create a partial for all the shared elements, and both views will use that where needed.
Add like an
IsAdmin
property to my view model and just use that to conditionally add/change elements as needed, so there will only be one view.
Any thoughts, or other ways to do this? Thanks.