1
0
Fork 0

Merge pull request '增加单词默认勾选,并修改提示 Fix Bug 495 - Liang Li Gang' (#77) from Bug495-LiangLiGang into master

Reviewed-on: http://121.4.94.30:3000/mrlan/EnglishPal/pulls/77
Bug525-Hui
mrlan 2023-01-29 10:27:22 +08:00
commit 1373df2a3e
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 %}