The frontend/UI server, written in JS using the MarkoJS library
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
925 B

  1. <data-menu categories=input.categories selected=(input.selected || {}) user=input.user on-open("open") />
  2. <main>
  3. <div class="changes-page">
  4. <h1 class="color-primary">Changes</h1>
  5. <p>All changes to <em>listed</em> resources is stored for 90 days for transparency reasons. The current state of an object after each change exists, but is only available through the GraphQL API at this time.</p>
  6. <for (change in state.changes)>
  7. <change data=change />
  8. </for>
  9. <a if(!state.shownAll) href="/data/changes?limit=0" class="show-more-button" on-click("clearLimit")>Show All</a>
  10. </div>
  11. </main>
  12. <add-character-modal enabled=(state.modal === "character.add") user=input.user on-added("characterAdded") on-close("close") />
  13. <add-channel-modal enabled=(state.modal === "channel.add") user=input.user on-close("close") />
  14. <add-file-modal enabled=(state.modal === "file.add") user=input.user on-close("close") />