Commit 1fad659c by Giulio Gratta

Comment out forum follow checkboxes

parent dbf737aa
...@@ -6,7 +6,9 @@ ...@@ -6,7 +6,9 @@
<form class="new-post-form"> <form class="new-post-form">
<div class="left-column"> <div class="left-column">
<div class="options"> <div class="options">
<input type="checkbox" name="follow" class="discussion-follow" class="discussion-follow" id="new-post-follow" checked><label for="new-post-follow">${_("follow this post")}</label>
<input style="display: none;" type="checkbox" name="follow" class="discussion-follow" class="discussion-follow" id="new-post-follow" checked><label for="new-post-follow">${_("follow this post")}</label>
<br> <br>
% if course.allow_anonymous: % if course.allow_anonymous:
<input type="checkbox" name="anonymous" class="discussion-anonymous" id="new-post-anonymous"><label for="new-post-anonymous">${_("post anonymously")}</label> <input type="checkbox" name="anonymous" class="discussion-anonymous" id="new-post-anonymous"><label for="new-post-anonymous">${_("post anonymously")}</label>
......
...@@ -39,7 +39,9 @@ ...@@ -39,7 +39,9 @@
</div> </div>
</div> </div>
<div class="options"> <div class="options">
<input type="checkbox" name="follow" class="discussion-follow" class="discussion-follow" id="new-post-follow" checked><label for="new-post-follow">${_("follow this post")}</label>
<input style="display: none;" type="checkbox" name="follow" class="discussion-follow" class="discussion-follow" id="new-post-follow" checked><label for="new-post-follow">${_("follow this post")}</label>
<br> <br>
% if course.allow_anonymous: % if course.allow_anonymous:
<input type="checkbox" name="anonymous" class="discussion-anonymous" id="new-post-anonymous"><label for="new-post-anonymous">${_("post anonymously")}</label> <input type="checkbox" name="anonymous" class="discussion-anonymous" id="new-post-anonymous"><label for="new-post-anonymous">${_("post anonymously")}</label>
......
...@@ -218,7 +218,8 @@ ...@@ -218,7 +218,8 @@
<span class="row-description">Follow posts for updates</span> <span class="row-description">Follow posts for updates</span>
</td> </td>
</tr> </tr>
<tr class="helpgrid-row helpgrid-row-notification">
<tr class="helpgrid-row helpgrid-row-notification" style="display: none;">
<td class="row-title">Receive updates</td> <td class="row-title">Receive updates</td>
<td class="row-item-full" colspan="3"> <td class="row-item-full" colspan="3">
<label class="sr" for="email-setting-checkbox">${_("Toggle Notifications Setting")}</label> <label class="sr" for="email-setting-checkbox">${_("Toggle Notifications Setting")}</label>
...@@ -227,6 +228,7 @@ ...@@ -227,6 +228,7 @@
<span class="row-description"> If enabled, you will receive an email digest once a day notifying you about new, unread activity from posts you are following. </span> <span class="row-description"> If enabled, you will receive an email digest once a day notifying you about new, unread activity from posts you are following. </span>
</td> </td>
</tr> </tr>
</table> </table>
% endif % endif
% endif % endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment