diff --git a/src/routes/idaa/clear-caches/+page.svelte b/src/routes/idaa/clear-caches/+page.svelte new file mode 100644 index 00000000..8f9030d5 --- /dev/null +++ b/src/routes/idaa/clear-caches/+page.svelte @@ -0,0 +1,138 @@ + + + +
+ {#if !overall_done} + +
+ Clearing saved data… +
+ {:else if had_error} + +
+ Cleared with some errors +
+

+ Most caches were cleared. Close this tab and reload the IDAA pages to + get the latest version. +

+ {:else} + +
+ All caches cleared +
+

+ Close this tab and reload the IDAA pages to get the latest version. +

+ {/if} + +
    + {#each steps as step (step.label)} +
  • + {step.label} + + {#if step.status === 'pending'} + + {:else if step.status === 'running'} + + {:else if step.status === 'done'} + + {step.detail} + {:else if step.status === 'error'} + + {step.detail} + {/if} + +
  • + {/each} +
+ + {#if overall_done} +

+ If you were having trouble with the IDAA + Meeting List, + Archives, or + Bulletin Board, + please try once more. We apologize for the inconvenience, and thank you for your patience while we work to improve the IDAA experience! +

+ {/if} +