Skip to content

Commit de0ccaa

Browse files
committed
Notice CurricuLLM
1 parent 7fe6807 commit de0ccaa

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

ProblemSource/AdminApp/src/apiFacade.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ export class ApiFacade {
1010
impersonateUser: string | null = null;
1111

1212
constructor(baseUrl: string) {
13+
// console.log("baseUrl", baseUrl);
1314
const http = {
1415
fetch: (r: Request, init?: RequestInit) => {
1516
init = init || <RequestInit>{};

ProblemSource/AdminApp/src/routes/teacher/+page.svelte

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,12 @@
146146
{#if showRealtimeButton}
147147
<button disabled={realtimeConnected == null} on:click={() => rtlTools.toggleConnect()}>{realtimeConnected == true ? 'Disconnect' : 'Connect'}</button>
148148
{/if}
149+
<div style="padding:5px; background-color:#cef; margin: 10px">
150+
<p>Vi söker engagerade och IT-kunniga lärare för ett nytt kollaborativt initiativ att ta fram gratis och öppna läromedel.
151+
Läs mer på <a href="https://github.com/JWMB/CurricuLLM/blob/main/README.md">github</a>.</p>
152+
<p>Skicka ett <a href="mailto:[email protected]?subject=Öppna läromedel">mail</a> om du eller en lärare du känner är intresserad av att hjälpa till! </p>
153+
<p>Vi jobbar även på nya versioner av Vektor, med fler typer av övningar. Anmäl intresse för att prova nya versioner <a href="mailto:[email protected]?subject=Vektor v2">här.</a></p>
154+
</div>
149155
{#if groups && groups.length > 0}
150156
(Total: {groups.map(o => o.summaries.length).reduce((p, c) => p + c)} created, {groups.map(o => o.summaries.filter(p => p.trainedDays > 0).length).reduce((p, c) => p + c)} started)
151157
<Tabs

0 commit comments

Comments
 (0)