Skip to content

Commit

Permalink
history added
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelwechner committed May 6, 2015
1 parent 8490c93 commit 108a0fa
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/resources/yanel-user/htdocs/yanel-user-profile.xsl
Expand Up @@ -178,6 +178,18 @@
<xsl:call-template name="process-all-groups"/>
-->

<h2>History</h2>
<table>
<tr>
<th>Usecase</th><th>Description</th><th>Date</th>
</tr>
<xsl:for-each select="history/event">
<tr>
<td><xsl:value-of select="@usecase"/></td><td><xsl:value-of select="@description"/></td><td><xsl:value-of select="@date"/></td>
</tr>
</xsl:for-each>
</table>


<!-- One shouldn't be able to delete oneself! -->
Expand Down

0 comments on commit 108a0fa

Please sign in to comment.