1
0
Fork 0

增加单词默认勾选,并修改提示

Bug495-LiangLiGang
梁立港 2022-12-01 21:04:12 +08:00
parent 671df67723
commit b65ffa6054
1 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@
<title>EnglishPal Study Room for {{username}}</title> <title>EnglishPal Study Room for {{username}}</title>
</head> </head>
<body> <body>
<p>勾选认识的单词</p> <p>取消勾选认识的单词</p>
<form method="post" action="/{{username}}/mark"> <form method="post" action="/{{username}}/mark">
<input type="submit" name="add-btn" value="加入我的生词簿"/> <input type="submit" name="add-btn" value="加入我的生词簿"/>
{% for x in lst %} {% for x in lst %}
@ -30,7 +30,7 @@
: :
<a href='http://youdao.com/w/eng/{{word}}/#keyfrom=dict2.index' title={{word}}>{{word}}</a> <a href='http://youdao.com/w/eng/{{word}}/#keyfrom=dict2.index' title={{word}}>{{word}}</a>
({{x[1]}}) ({{x[1]}})
<input type="checkbox" name="marked" value="{{word}}"> <input type="checkbox" name="marked" value="{{word}}" checked>
</p> </p>
{% endfor %} {% endfor %}