File tree Expand file tree Collapse file tree 1 file changed +12
-3
lines changed
src/packages/next/components/store Expand file tree Collapse file tree 1 file changed +12
-3
lines changed Original file line number Diff line number Diff line change 4
4
*/
5
5
6
6
import { Divider , Form } from "antd" ;
7
+ import { useRouter } from "next/router" ;
7
8
8
9
import { unreachable } from "@cocalc/util/misc" ;
9
10
import A from "components/misc/A" ;
@@ -30,6 +31,8 @@ export function RunLimit({
30
31
boost = false ,
31
32
source,
32
33
} : RunLimitProps ) {
34
+ const router = useRouter ( ) ;
35
+
33
36
function extra ( ) {
34
37
if ( ! showExplanations ) return ;
35
38
@@ -64,9 +67,15 @@ export function RunLimit({
64
67
case "course" :
65
68
return (
66
69
< div style = { { marginTop : "5px" } } >
67
- It's advised to select two more seatch than the number of students
68
- (one for each student, one for the shared project and one for the
69
- instructor project)
70
+ If you consider creating a shared project for your course, you
71
+ should select one more seat than the number of students. One for
72
+ each student, and one for the shared project. Regarding your
73
+ instructor project, you need one additional seat or purchase a
74
+ regular{ " " }
75
+ < a onClick = { ( ) => router . push ( "/store/site-license" ) } >
76
+ site license
77
+ </ a > { " " }
78
+ to cover it.
70
79
</ div >
71
80
) ;
72
81
You can’t perform that action at this time.
0 commit comments