show/hide this revision's text 2 Make it more clear that this is just two views of the same info

We have a Struts 2 web application that's used by pretty much every employee to manage and configure jobs for our server farm. We're working on a plan to make a dashboard for customers, so they can see their subset of own jobs, and a very simple display of its status ("in process", "ready for proofing", "finished", etc). I don't want to All of the pages the customers can see will have much less information than the employees' views, and there will be no way to edit or change anything. But in the end, they're essentially two separate views of the same information: one very simple, one more complex and controllable.

The naive way to do thison , is to have if/elses in every single jsp:

<s:if test="user.role == 'customer'">
    <!-- TODO - Display simple customer view -->
</s:if>
<s:else>
    <!-- TODO - Display complex employee view -->
</s:else>

Is there a simpler way to do this? Can I create two separate directories of jsps, one named "customer" and one named "employee" (or default or something) and then have Struts key off of a property in my action to decide which directory to check?

Or is there another way that I can do this?

show/hide this revision's text 1

Make Struts show different JSPs for different roles

We have a Struts 2 web application that's used by pretty much every employee to manage and configure jobs for our server farm. We're working on a plan to make a dashboard for customers, so they can see their subset of jobs, and a very simple display of its status ("in process", "ready for proofing", "finished", etc). I don't want to have to do this on every single jsp:

<s:if test="user.role == 'customer'">
    <!-- TODO - Display customer view -->
</s:if>
<s:else>
    <!-- TODO - Display employee view -->
</s:else>

Is there a simpler way to do this? Can I create two separate directories of jsps, one named "customer" and one named "employee" (or default or something) and then have Struts key off of a property in my action to decide which directory to check?

Or is there another way that I can do this?