17 lines
724 B
Text
17 lines
724 B
Text
<a href=@{GroupR}>Home
|
|
|
|
<a href=@{TodolistR groupId}>Lists
|
|
<ul>
|
|
$forall item <- items
|
|
<li>
|
|
<form action=@{CheckTodolistItemR groupId todolistId (entityKey item)} method="POST">
|
|
<button type="submit">#{getText item}
|
|
<form action=@{AddTodolistItemR groupId todolistId} method="post">
|
|
<form action=@{AddTodolistItemR groupId todolistId} method="post">
|
|
<input type="text" name="item" placeholder="new item">
|
|
<button type="submit">add
|
|
<form action=@{TrimTodolistItemsR groupId todolistId} method="post">
|
|
<button type="submit">trim
|
|
<form action=@{SortTodolistItemsR groupId todolistId} method="post">
|
|
<button type="submit">sort
|
|
<a href=@{EditTodolistItemsR groupId todolistId}>Edit
|