Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

...

Code Block
    add(new UserPanel("user", user);

and:

Code Block
html
html
    <span wicket:id="user">[user data]</span>

or for better previewability:

Code Block
html
html
    <span wicket:id="user">
      <wicket:remove>
        User:        dummy name<br/>
        Last log-in: 2037-09-10 10:21:59h
      <wicket:remove>
    </span>

...

Code Block
    add(new UsersListPanel("users", users));

and:

Code Block
html
html
    <span wicket:id="users">[users here]</span>

or for better previewability:

Code Block
html
html
    <span wicket:id="users">
      <wicket:remove>
      <table>
        <tr>
          <th>user name</th>
          <th>last login</th>
        </tr>

        <tr>
          <td>dummy Username</td>
          <td>2037-09-10 10:21:59h</td>
        </tr>
      </table>
      <wicket:remove>
    </span>