Skip to content

Instantly share code, notes, and snippets.

@mh-github
Created July 30, 2012 11:32
Show Gist options
  • Save mh-github/3206330 to your computer and use it in GitHub Desktop.
Save mh-github/3206330 to your computer and use it in GitHub Desktop.
<b>Pending Connections List</b>
<table>
<g:each var="user" in="${pending_connections}">
<g:form>
<tr>
<td>${user}</td>
<td><div id="accept_connection-${user}">
<g:submitToRemote value="Accept Connection"
url="[controller: 'profile', action: 'accept_connection']"
update="accept_connection-${user}" />
</div></td>
</tr>
</g:form>
</g:each>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment