Displaying All 3rd Party Apps for a User

This piece of code illustrates how to list all the applications a given user has added:

<article:list id="userApps"
  includeArticleTypes="<%= ThirdPartyConstants.APP_ARTICLE_TYPE %>"
  sectionUniqueName="${section.name}"
  includeSubSections="true"
  all="true"
/>

<c:forEach var="userApp" items="${userApps}">
  <div class="user-app">
    <h2>${userApp.title}</h2>
    <div class="user-app-contents">
      ${userApp.fields.lastResult}
    </div>
  </div>
</c:forEach>