<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://docs.moodle.org/37/en/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Marycooch</id>
	<title>MoodleDocs - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://docs.moodle.org/37/en/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Marycooch"/>
	<link rel="alternate" type="text/html" href="https://docs.moodle.org/37/en/Special:Contributions/Marycooch"/>
	<updated>2026-05-12T21:10:06Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.5</generator>
	<entry>
		<id>https://docs.moodle.org/37/en/index.php?title=RecordRTC&amp;diff=136064</id>
		<title>RecordRTC</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/37/en/index.php?title=RecordRTC&amp;diff=136064"/>
		<updated>2020-07-28T10:44:03Z</updated>

		<summary type="html">&lt;p&gt;Marycooch: removing ref to Atto plugin&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox plugin&lt;br /&gt;
|type = Editors&lt;br /&gt;
|entry = https://moodle.org/plugins/tinymce_recordrtc&lt;br /&gt;
|maintainer = [[User:Jesus Federico|Jesus Federico]]&lt;br /&gt;
|float = right&lt;br /&gt;
}}&lt;br /&gt;
==What is RecordRTC?==&lt;br /&gt;
&lt;br /&gt;
RecordRTC is a set of plugins for the [https://moodle.org/plugins/tinymce_recordrtc TinyMCE editor], enabling users to add audio and video annotations to text, anywhere a text editor is present. This plugin adds buttons for recording audio or video (with audio) to the editor&#039;s toolbar. [[File:recordrtc_buttons.png]] (Note that the [[Atto editor]] has this feature as standard.)&lt;br /&gt;
&lt;br /&gt;
Using [https://webrtc.org/ WebRTC] technologies, all recording is done instantly in the browser. After recording, users can embed the annotation directly into the text they are currently editing. The recording will appear as an audio or video player in the published writing.&lt;br /&gt;
&lt;br /&gt;
The plugin works fine with Chrome, Firefox and Opera on Desktop computers running Windows, Linux, Mac OS and Chrome OS.&lt;br /&gt;
&lt;br /&gt;
==How do I get it?==&lt;br /&gt;
*Administrators whose Moodle sites allow plugins to be installed directly can install RecordRTC by clicking the Install Plugins link from the Plugins area of Site administration and then searching for the or [https://moodle.org/plugins/tinymce_recordrtc  TinyMCE RecordRTC plugin] as appropriate.&lt;br /&gt;
*Administrators who are not able to install plugins directly can download the plugin from the Moodle Plugins directory and upload it to the server.&lt;br /&gt;
*The plugins are also available on Github: [https://moodle.org/plugins/pluginversions.php?plugin=atto_recordrtc Here for Atto] and [https://moodle.org/plugins/pluginversions.php?plugin=tinymce_recordrtc here for TinyMCE] Look for the latest release and download zip file by using the link [[File:recordrtc_git_download.png]] See the FAQ below for set up with Ubuntu.&lt;br /&gt;
&lt;br /&gt;
=== What are the admin settings? ===&lt;br /&gt;
The plugins will work with the defaults, but you can change them from theText editors pages (Atto or TinyMCE) from Plugins in Site administration.&lt;br /&gt;
&lt;br /&gt;
Administrators can:&lt;br /&gt;
&lt;br /&gt;
* Allow the users to record only audio, only video, or both by changing the buttons that appear in the editor toolbar.&lt;br /&gt;
* Change the target bitrate of recorded audio.&lt;br /&gt;
* Change the target bitrate of recorded video&lt;br /&gt;
* Set the recording time limit, to control maximum recording size&lt;br /&gt;
&lt;br /&gt;
The default bitrate for recorded audio (128000) should lead to generate files of about 15kB per minute and the default bitrate for recorded video (2500000) to generate files of 20MB per minute. The lower the bitrate the smaller the file size.&lt;br /&gt;
&lt;br /&gt;
The recording time limit is set to 120 seconds by default so the maximum size expected on video files should be of about 40MB&lt;br /&gt;
&lt;br /&gt;
==How does it work?==&lt;br /&gt;
*The Atto or TinyMCE editors will display one or both icons for audio and/or video, depending on the administrator&#039;s setting.&lt;br /&gt;
&lt;br /&gt;
[[File:RecordAtto.png]]&lt;br /&gt;
*Click the icon for audio or video recording. You&#039;ll see a button &#039;Start recording&#039;. Click it and speak.&lt;br /&gt;
[[File:attachasannotation.png]]&lt;br /&gt;
*When you have finished, click to stop the recording. It will ask you to name it and attach the recording as an annotation.&lt;br /&gt;
&lt;br /&gt;
== Troubleshooting ==&lt;br /&gt;
=== Recording stops after a few seconds ===&lt;br /&gt;
[[File:recordingrtc_error_limit_reached.png]]&lt;br /&gt;
&lt;br /&gt;
There are two settings that establish the maximum file size that can be uploaded to Moodle. These are defined in php.ini for the web server.&lt;br /&gt;
 post_max_size = 8M&lt;br /&gt;
 upload_max_filesize = 2M&lt;br /&gt;
Just edit the file and increase their values to something between 40M-50M for 2 minutes video recordings. &lt;br /&gt;
In Ubuntu&lt;br /&gt;
 vi /etc/php/7.0/apache2/php.ini&lt;br /&gt;
&lt;br /&gt;
You can set some large values as described in [https://tracker.moodle.org/browse/MDL-62872?focusedCommentId=654424&amp;amp;page=com.atlassian.jira.plugin.system.issuetabpanels%3Acomment-tabpanel#comment-654424 this Moodle tracker issue]:&lt;br /&gt;
 post_max_size = 1024M&lt;br /&gt;
 upload_max_filesize = 1024M &lt;br /&gt;
&lt;br /&gt;
== Known Issues ==&lt;br /&gt;
* The media files don&#039;t show duration&lt;br /&gt;
* The controls for navigating the files do not work properly in the player.&lt;br /&gt;
&lt;br /&gt;
== F.A.Q. ==&lt;br /&gt;
=== Why won&#039;t these plugins work with all browsers? ===&lt;br /&gt;
WebRTC (&amp;quot;Web Real-Time Communication&amp;quot;) is a collection of communications protocols and application programming interfaces that enable real-time communication over peer-to-peer connections. Implemented in browsers it enables applications such as video conferencing, file transfer, chat, or desktop sharing without the need of either internal or external plugins.[[https://en.wikipedia.org/wiki/WebRTC Wikipedia]]&lt;br /&gt;
&lt;br /&gt;
MediaStream Recording API, sometimes simply referred to as the Media Recording API or the MediaRecorder API, is closely affiliated with the Media Capture and Streams API and the WebRTC API. The MediaStream Recording API makes it easy to record audio and/or video streams. When used with navigator.mediaDevices.getUserMedia(), it provides an easy way to record from the user&#039;s input devices and instantly use the result in web apps. Both audio and video may be recorded, separately or together. [[https://developer.mozilla.org/en-US/docs/Web/API/MediaRecorder MediaRecorder Documentation]]&lt;br /&gt;
&lt;br /&gt;
As these plugins make use of diverse WebRTC technologies, they can only be used in browsers that have implemented both [[https://www.w3.org/TR/webrtc/ WebRTC 1.0]] and [[https://www.w3.org/TR/mediastream-recording/ MediaRecorder API]]. This is the case for [https://www.google.com/chrome/ Chrome], [https://www.mozilla.org/en-US/firefox/new/ Firefox] and [http://www.opera.com/ Opera]. [[https://webrtc.org/  See `Supported browsers and platforms`]] Therefore these are the only ones that the initial version of these plugins (1.0) support.&lt;br /&gt;
&lt;br /&gt;
Edge has implemented WebRTC 1.0 in [https://www.microsoft.com/en-us/windows/microsoft-edge Microsoft Edge] but it does not include MediaRecorder API, so implementing the plugins for this browser requires some customisation to the libraries and the use of an external server.&lt;br /&gt;
&lt;br /&gt;
Safari 11 for iOS will support WebRTC 1.0 [[https://webrtc.ventures/2017/06/webrtc-support-in-safari-11/ See]] but same as edge, the implementation of MediaRecorder API has not been announced.&lt;br /&gt;
&lt;br /&gt;
As this covers only about the 60% of the browsers, there are plans for adding support to these two browsers by making use of Media Streaming as in version 2.0 of these plugins.&lt;br /&gt;
&lt;br /&gt;
=== Can I have recordings of more than 2 minutes? ===&lt;br /&gt;
Yes. That can be changed in the plugin configuration. Keep in mind that as the file size will increase, the settings in php should also be edited.&lt;br /&gt;
Also, because the size can be too much for the browser itself, we recommend not going to large.&lt;br /&gt;
The only solution for giving a really large limit to the file size is to include a server component for doing a progressive upload and trans coding. But the first version of these plugins do not cover that possibility.&lt;br /&gt;
&lt;br /&gt;
=== Where are the recordings stored? ===&lt;br /&gt;
Storing the RecordRTC recordings is not different than storing any other media file that is uploaded to Moodle. So, it depends of the file system your Moodle server has configured.&lt;br /&gt;
When using the default configuration, all files are stored in &amp;lt;code&amp;gt;/moodlepath/moodledata/filedir/xx/yy/&amp;lt;/code&amp;gt; where xx and yy are the path defined by the API when the file was uploaded.&lt;br /&gt;
If you are a developer interested in learning more details about this you can see [https://docs.moodle.org/dev/File_API_internals#File_storage_on_disk File storage on disk]. It is an old article but it gives a good idea on what is underneath. Also see [[Amazon S3 repository]] for information on storing files externally in Amazon S3 buckets.&lt;br /&gt;
&lt;br /&gt;
=== How do I set it up with Ubuntu?===&lt;br /&gt;
* Navigate to `moodle_root_path/lib/editor/atto/plugins` or `moodle_root_path/lib/editor/tinymce/plugins`, where `moodle_root_path` is the location where Moodle is installed (ex.: `/var/www/html/moodle`)&lt;br /&gt;
** For Atto execute &amp;lt;code&amp;gt;sudo git clone https://github.com/blindsidenetworks/moodle-atto_recordrtc.git recordrtc&amp;lt;/code&amp;gt;&lt;br /&gt;
** For TinyMCE execute &amp;lt;code&amp;gt;sudo git clone https://github.com/blindsidenetworks/moodle-tinymce_recordrtc.git recordrtc&amp;lt;/code&amp;gt;&lt;br /&gt;
* Log into a Moodle account with administration capabilities&lt;br /&gt;
&lt;br /&gt;
==Notes for system administrators ==&lt;br /&gt;
=== Increasing max file size ===&lt;br /&gt;
The default maximum size of uploads in PHP is very small, it is recommended to set the upload_max_filesize setting to 40M and the post_max_size setting to 50M for a time limit of 2:00 to avoid getting an alert while recording.&lt;br /&gt;
&lt;br /&gt;
The file size of recorded video for Firefox will likely be twice that of other browsers, even with the same settings; this is expected as it uses a different writing library for recording video. The audio file size should be similar across all browsers.&lt;br /&gt;
&lt;br /&gt;
== Notes for developers ==&lt;br /&gt;
=== Updating libraries ===&lt;br /&gt;
These plugins makes use of two libraries. Adapter.js which makes all the WebRTC magic and Bowser.js that helps to identify the browser and OS where the application is running.&lt;br /&gt;
&lt;br /&gt;
If trying to update Bowser or Adapter.js dependencies for the project, it is necessary to replace the named definition at the top of the file with an anonymous one, like so &lt;br /&gt;
For Bowser.js:&lt;br /&gt;
&lt;br /&gt;
Old code:&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
!function (root, name, definition) {&lt;br /&gt;
if (typeof module != &#039;undefined&#039; &amp;amp;&amp;amp; module.exports) module.exports = definition()&lt;br /&gt;
else if (typeof define == &#039;function&#039; &amp;amp;&amp;amp; define.amd) define(name, definition)&lt;br /&gt;
else root[name] = definition()&lt;br /&gt;
}(this, &#039;bowser&#039;, function () {&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
New code:&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
define([], function() {&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Or so for Adapter.js:&lt;br /&gt;
&lt;br /&gt;
Old code&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
(function(f){if(typeof exports===&amp;quot;object&amp;quot;&amp;amp;&amp;amp;typeof module!==&amp;quot;undefined&amp;quot;){module.exports=f()}else if(typeof define===&amp;quot;function&amp;quot;&amp;amp;&amp;amp;define.amd){define([],f)}else{var g;if(typeof window!==&amp;quot;undefined&amp;quot;){g=window}else if(typeof global!==&amp;quot;undefined&amp;quot;){g=global}else if(typeof self!==&amp;quot;undefined&amp;quot;){g=self}else{g=this}g.adapter = f()}})(function(){&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
New code&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
define([], function() {&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Audio]]&lt;br /&gt;
[[Category:Video]]&lt;br /&gt;
[[Category:Language teaching]]&lt;br /&gt;
&lt;br /&gt;
[[es:RecordRTC]]&lt;/div&gt;</summary>
		<author><name>Marycooch</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/37/en/index.php?title=File:ImportGlossaryEntries.jpg&amp;diff=136013</id>
		<title>File:ImportGlossaryEntries.jpg</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/37/en/index.php?title=File:ImportGlossaryEntries.jpg&amp;diff=136013"/>
		<updated>2020-03-09T07:09:24Z</updated>

		<summary type="html">&lt;p&gt;Marycooch: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Marycooch</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/37/en/index.php?title=Import_glossary_entries&amp;diff=136012</id>
		<title>Import glossary entries</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/37/en/index.php?title=Import_glossary_entries&amp;diff=136012"/>
		<updated>2020-03-09T07:09:12Z</updated>

		<summary type="html">&lt;p&gt;Marycooch: /* Importing  glossary entries */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Glossary}}Glossary entries can be exported and then imported into another glossary via an XML file.&lt;br /&gt;
&lt;br /&gt;
==Importing  glossary entries==&lt;br /&gt;
&lt;br /&gt;
*As an editing teacher (or administrator or manager), access your glossary&lt;br /&gt;
*With the Boost theme, click the cog/gear icon on the right and then click &#039;Import entries&#039;. With non-Boost themes such as Classic, go to &#039;&#039;Administration &amp;gt; Glossary administration &amp;gt; Import entries&lt;br /&gt;
&lt;br /&gt;
*Click the &amp;quot;Choose a file&amp;quot; button and browse for the exported entries XML file on your computer&lt;br /&gt;
*Select the destination for the new entries: either the current glossary or a new one&lt;br /&gt;
*If you want to import category information, click the checkbox.&lt;br /&gt;
*Click the &amp;quot;Submit&amp;quot; button. &lt;br /&gt;
&lt;br /&gt;
[[File:ImportGlossaryEntries.jpg]]&lt;br /&gt;
&lt;br /&gt;
You&#039;ll then see a report of the entries and categories added to the glossary. If you enabled duplicate entries when you created the glossary, the import process will add all of the new definitions. Otherwise, it will not allow you to import any duplicate entries.&lt;br /&gt;
&lt;br /&gt;
You will be listed as author of all the entries.&lt;br /&gt;
&lt;br /&gt;
If your exported glossary included embedded images and/or attached files, these will also be imported into the new glossary.&lt;br /&gt;
&lt;br /&gt;
== Troubleshooting ==&lt;br /&gt;
&lt;br /&gt;
Possible causes of problems importing entries:&lt;br /&gt;
* If there are mistakes in the XML file such as the &amp;lt;entries&amp;gt; tag being missing or the &amp;lt;info&amp;gt; tag being in the wrong place. May happen if you have constructed the XML file manually or with some sort of tool like mailmerge in Word and your template is wrong.&lt;br /&gt;
* If there are top bit set characters in the text of the entities like concepts, definitions or keywords. Replace things like &amp;amp; with &amp;amp;amp;amp;&lt;br /&gt;
* If there are tabs or spaces between entries. Not sure if spaces cause problems but best to remove any between the end of one tag and start of the next. e.g. Search and replace &amp;gt; &amp;lt; with &amp;gt;&amp;lt; via a text editor.&lt;br /&gt;
* In most cases the import is halted if any of these errors occur.&lt;br /&gt;
* Duplicates in the entries which clash with entries already when merging a glossary is usually not a problem.&lt;br /&gt;
* Warnings like &amp;lt;code&amp;gt;Warning: exec() has been disabled for security reasons in /moodle/lib/uploadlib.php on line 603&amp;lt;/code&amp;gt; may not be the problem when importing but may distract one from dealing with problems with the format of the XML file.&lt;br /&gt;
* HTML and XHTML tags written within CONCEPT or DEFINITION elements will fail on import, showing &amp;quot;Array&amp;quot; instead of the desired content. To remedy this, try writing the (X)HTML tags within &amp;lt;![CDATA[ ]]&amp;gt; markup.&lt;br /&gt;
* If the glossary entries contain images, image paths will need amending by doing a search and replace in the XML file in order for the images to be displayed when the file is imported.&lt;br /&gt;
&lt;br /&gt;
==Restoring a glossary activity backup==&lt;br /&gt;
&lt;br /&gt;
An alternative method of importing glossary entries is to restore a glossary [[Activity backup|activity backup]] containing enrolled users. This method includes categories, images and attachments within glossary entries. When the glossary is restored, the authors of the entries will be the same as in the original glossary. &lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
* Glossary - Excel to XML converter [http://www.focusedonlearning.com/share/glossaryimport.html] &lt;br /&gt;
* [http://moodle.org/mod/glossary/view.php?id=851 Glossary of common terms] with entries download link for importing to other Moodle sites&lt;br /&gt;
* [[Import and export FAQ]]&lt;br /&gt;
* [[Moodle glossary entries format]] can use the question bank to convert a variety of formats into an xml glossary file for import&lt;br /&gt;
Using Moodle forum discussions:&lt;br /&gt;
*[http://moodle.org/mod/forum/discuss.php?d=79120 Excel to Glossaries]&lt;br /&gt;
*[http://moodle.org/mod/forum/discuss.php?d=142346 Backup a glossary]&lt;br /&gt;
*[http://moodle.org/mod/forum/discuss.php?d=123277 Importing into Moodle] contains an explanation of how to manually create an XML file from an Excel spreadsheet&lt;br /&gt;
&lt;br /&gt;
[[de:Glossar erstellen#Glossareinträge_importieren]]&lt;br /&gt;
[[es:Importar entradas del glosario]]&lt;br /&gt;
[[fr:Importer/exporter un glossaire]]&lt;/div&gt;</summary>
		<author><name>Marycooch</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/37/en/index.php?title=Security_report_on_default_user_role&amp;diff=136010</id>
		<title>Security report on default user role</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/37/en/index.php?title=Security_report_on_default_user_role&amp;diff=136010"/>
		<updated>2020-02-25T13:03:50Z</updated>

		<summary type="html">&lt;p&gt;Marycooch: /* Reviewing authenticated user role permissions */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Security overview report}}&lt;br /&gt;
==Default role for all users==&lt;br /&gt;
&lt;br /&gt;
In general the default role for all users should be set to authenticated user. Normally all permissions for the role of authenticated user should be left as default. &lt;br /&gt;
&lt;br /&gt;
==Default user role is incorrectly defined==&lt;br /&gt;
&lt;br /&gt;
If the security overview report shows the default role for all users with status &#039;Critical&#039; and states that &#039;The default user role &amp;quot;Authenticated user&amp;quot; is incorrectly defined!&#039; it means that one or more risky capabilities are allowed for the role.&lt;br /&gt;
&lt;br /&gt;
==Reviewing authenticated user role permissions==&lt;br /&gt;
&lt;br /&gt;
The permissions for the role of authenticated user can be reviewed as follows:&lt;br /&gt;
&lt;br /&gt;
# Go to &#039;&#039;Administration &amp;gt; Site administration &amp;gt; Users &amp;gt; Permissions &amp;gt; Define roles&#039;&#039;&lt;br /&gt;
# In the role column, click the link &#039;Authenticated user&#039;&lt;br /&gt;
# Browse the permissions column&lt;br /&gt;
&lt;br /&gt;
If there is no reason for changing permissions from default, then the role can be reset by clicking the Reset button at the top of the page.&lt;br /&gt;
&lt;br /&gt;
[[File:ResetRoleButton.jpg|ResetRoleButton.jpg]]&lt;br /&gt;
&lt;br /&gt;
After resetting the authenticated user role, the security overview report will show the default role for all users with status OK.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
&lt;br /&gt;
* Using Moodle [http://moodle.org/mod/forum/view.php?id=7301 Security and Privacy forum]&lt;br /&gt;
&lt;br /&gt;
[[es:Reporte de seguridad sobre rol del usuario por defecto]]&lt;/div&gt;</summary>
		<author><name>Marycooch</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/37/en/index.php?title=Security_report_on_default_user_role&amp;diff=136009</id>
		<title>Security report on default user role</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/37/en/index.php?title=Security_report_on_default_user_role&amp;diff=136009"/>
		<updated>2020-02-25T13:03:39Z</updated>

		<summary type="html">&lt;p&gt;Marycooch: /* Reviewing authenticated user role permissions */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Security overview report}}&lt;br /&gt;
==Default role for all users==&lt;br /&gt;
&lt;br /&gt;
In general the default role for all users should be set to authenticated user. Normally all permissions for the role of authenticated user should be left as default. &lt;br /&gt;
&lt;br /&gt;
==Default user role is incorrectly defined==&lt;br /&gt;
&lt;br /&gt;
If the security overview report shows the default role for all users with status &#039;Critical&#039; and states that &#039;The default user role &amp;quot;Authenticated user&amp;quot; is incorrectly defined!&#039; it means that one or more risky capabilities are allowed for the role.&lt;br /&gt;
&lt;br /&gt;
==Reviewing authenticated user role permissions==&lt;br /&gt;
&lt;br /&gt;
The permissions for the role of authenticated user can be reviewed as follows:&lt;br /&gt;
&lt;br /&gt;
# Go to &#039;&#039;Administration &amp;gt; Site administration &amp;gt; Users &amp;gt; Permissions &amp;gt; Define roles&#039;&#039;&lt;br /&gt;
# In the role column, click the link &#039;Authenticated user&#039;&lt;br /&gt;
# Browse the permissions column&lt;br /&gt;
&lt;br /&gt;
If there is no reason for changing permissions from default, then the role can be reset by clicking the E button at the top of the page.&lt;br /&gt;
&lt;br /&gt;
[[File:ResetRoleButton.jpg|ResetRoleButton.jpg]]&lt;br /&gt;
&lt;br /&gt;
After resetting the authenticated user role, the security overview report will show the default role for all users with status OK.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
&lt;br /&gt;
* Using Moodle [http://moodle.org/mod/forum/view.php?id=7301 Security and Privacy forum]&lt;br /&gt;
&lt;br /&gt;
[[es:Reporte de seguridad sobre rol del usuario por defecto]]&lt;/div&gt;</summary>
		<author><name>Marycooch</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/37/en/index.php?title=File:ResetRoleButton.jpg&amp;diff=136008</id>
		<title>File:ResetRoleButton.jpg</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/37/en/index.php?title=File:ResetRoleButton.jpg&amp;diff=136008"/>
		<updated>2020-02-25T13:03:36Z</updated>

		<summary type="html">&lt;p&gt;Marycooch: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Marycooch</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/37/en/index.php?title=Talk:Manual_enrolment&amp;diff=135989</id>
		<title>Talk:Manual enrolment</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/37/en/index.php?title=Talk:Manual_enrolment&amp;diff=135989"/>
		<updated>2020-02-04T16:03:15Z</updated>

		<summary type="html">&lt;p&gt;Marycooch: corrected to 3.8&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Manual enrolment method 1 versions==&lt;br /&gt;
I am glad my updated screenshot and directions were accepted for this version 3.7 article. I am a bit new at editing these wiki pages - how do I make sure this update is applied to all the relevant versions? At least 3.8 going forward, although I imagine it applies to past versions that used Boost. Is there an elegant way using the wiki tools, or do I just need to copy/paste it to all the version pages? --[[User:Ray Hinton|Ray Hinton]] ([[User talk:Ray Hinton|talk]]) 14:12, 4 February 2020 (UTC)&lt;br /&gt;
==Reply from Mary==&lt;br /&gt;
Hello there. Each wiki is separate so you have to copy/paste and upload the screenshots to each wiki unfortunately. However, we only actively maintain the current one and last one, so I would just do it for the 3.8 wiki if I were you.--[[User:Mary Cooch|Mary Cooch]] ([[User talk:Mary Cooch|talk]]) 15:22, 4 February 2020 (UTC)&lt;/div&gt;</summary>
		<author><name>Marycooch</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/37/en/index.php?title=Talk:Manual_enrolment&amp;diff=135988</id>
		<title>Talk:Manual enrolment</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/37/en/index.php?title=Talk:Manual_enrolment&amp;diff=135988"/>
		<updated>2020-02-04T15:22:41Z</updated>

		<summary type="html">&lt;p&gt;Marycooch: /* Manual Enrolment Period */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Manual enrolment method 1 versions==&lt;br /&gt;
I am glad my updated screenshot and directions were accepted for this version 3.7 article. I am a bit new at editing these wiki pages - how do I make sure this update is applied to all the relevant versions? At least 3.8 going forward, although I imagine it applies to past versions that used Boost. Is there an elegant way using the wiki tools, or do I just need to copy/paste it to all the version pages? --[[User:Ray Hinton|Ray Hinton]] ([[User talk:Ray Hinton|talk]]) 14:12, 4 February 2020 (UTC)&lt;br /&gt;
==Reply from Mary==&lt;br /&gt;
Hello there. Each wiki is separate so you have to copy/paste and upload the screenshots to each wiki unfortunately. However, we only actively maintain the current one and last one, so I would just do it for the 3.7 wiki if I were you.--[[User:Mary Cooch|Mary Cooch]] ([[User talk:Mary Cooch|talk]]) 15:22, 4 February 2020 (UTC)&lt;/div&gt;</summary>
		<author><name>Marycooch</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/37/en/index.php?title=Talk:Manual_enrolment&amp;diff=135987</id>
		<title>Talk:Manual enrolment</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/37/en/index.php?title=Talk:Manual_enrolment&amp;diff=135987"/>
		<updated>2020-02-04T15:22:34Z</updated>

		<summary type="html">&lt;p&gt;Marycooch: /* Reply from Mary= */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Manual enrolment method 1 versions==&lt;br /&gt;
I am glad my updated screenshot and directions were accepted for this version 3.7 article. I am a bit new at editing these wiki pages - how do I make sure this update is applied to all the relevant versions? At least 3.8 going forward, although I imagine it applies to past versions that used Boost. Is there an elegant way using the wiki tools, or do I just need to copy/paste it to all the version pages? --[[User:Ray Hinton|Ray Hinton]] ([[User talk:Ray Hinton|talk]]) 14:12, 4 February 2020 (UTC)&lt;br /&gt;
==Reply from Mary==&lt;br /&gt;
Hello there. Each wiki is separate so you have to copy/paste and upload the screenshots to each wiki unfortunately. However, we only actively maintain the current one and last one, so I would just do it for the 3.7 wiki if I were you.--[[User:Mary Cooch|Mary Cooch]] ([[User talk:Mary Cooch|talk]]) 15:22, 4 February 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
==Manual Enrolment Period==&lt;br /&gt;
The &amp;quot;behind the scenes&amp;quot; actions that happen after the manual enrolment period has expired needs clarification. What happens to manual student enrolments AFTER the enrolment period has passed? Do all the currently enroled students automatically get UNENROLED from the course? Or do existing enrolments remain and only new enrolments are blocked?&lt;br /&gt;
--[[User:Luis de Vasconcelos|Luis de Vasconcelos]] 19:43, 6 March 2013 (WST)&lt;/div&gt;</summary>
		<author><name>Marycooch</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/37/en/index.php?title=Talk:Manual_enrolment&amp;diff=135986</id>
		<title>Talk:Manual enrolment</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/37/en/index.php?title=Talk:Manual_enrolment&amp;diff=135986"/>
		<updated>2020-02-04T15:22:27Z</updated>

		<summary type="html">&lt;p&gt;Marycooch: reply&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Manual enrolment method 1 versions==&lt;br /&gt;
I am glad my updated screenshot and directions were accepted for this version 3.7 article. I am a bit new at editing these wiki pages - how do I make sure this update is applied to all the relevant versions? At least 3.8 going forward, although I imagine it applies to past versions that used Boost. Is there an elegant way using the wiki tools, or do I just need to copy/paste it to all the version pages? --[[User:Ray Hinton|Ray Hinton]] ([[User talk:Ray Hinton|talk]]) 14:12, 4 February 2020 (UTC)&lt;br /&gt;
==Reply from Mary===&lt;br /&gt;
Hello there. Each wiki is separate so you have to copy/paste and upload the screenshots to each wiki unfortunately. However, we only actively maintain the current one and last one, so I would just do it for the 3.7 wiki if I were you.--[[User:Mary Cooch|Mary Cooch]] ([[User talk:Mary Cooch|talk]]) 15:22, 4 February 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
==Manual Enrolment Period==&lt;br /&gt;
The &amp;quot;behind the scenes&amp;quot; actions that happen after the manual enrolment period has expired needs clarification. What happens to manual student enrolments AFTER the enrolment period has passed? Do all the currently enroled students automatically get UNENROLED from the course? Or do existing enrolments remain and only new enrolments are blocked?&lt;br /&gt;
--[[User:Luis de Vasconcelos|Luis de Vasconcelos]] 19:43, 6 March 2013 (WST)&lt;/div&gt;</summary>
		<author><name>Marycooch</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/37/en/index.php?title=Teacher_quick_guide&amp;diff=135954</id>
		<title>Teacher quick guide</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/37/en/index.php?title=Teacher_quick_guide&amp;diff=135954"/>
		<updated>2019-12-30T11:30:10Z</updated>

		<summary type="html">&lt;p&gt;Marycooch: Reverted edits by Skaceli (talk) to last revision by Tsala&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Managing a Moodle course}}&lt;br /&gt;
In Moodle, a teacher has responsibility for the materials in their own course. They often also manage enrolments and are able to change the layout of the course page. This quick start guide introduces Moodle&#039;s features to those with the [[Teacher role]].&lt;br /&gt;
&lt;br /&gt;
==Course set up==&lt;br /&gt;
A course is a space on a Moodle site where teachers can add learning materials for their students. A teacher may have more than one course and a course may include more than one teacher and more than one group of learners. See the screencast [https://www.youtube.com/watch?v=STKBlI4vr40&amp;amp;t=8s What is a course?] or if your course looks different, watch [https://youtu.be/Ah54f1CrzEI this alternative screencast].&lt;br /&gt;
&lt;br /&gt;
By default a regular teacher can&#039;t add a new course. See [[Adding a new course]] for information on how courses may be created.&lt;br /&gt;
&lt;br /&gt;
[[File:ExampleBoostTheme.png|600px|thumb|center|Example of a Moodle course using the [[Boost theme]]]]&lt;br /&gt;
&lt;br /&gt;
[[File:tgcoursesetup.png|600px|thumb|center|Example of a Moodle course with a [[Navigation block]] and [[Administration block]]]]&lt;br /&gt;
&lt;br /&gt;
A course can display its materials in a number of ways or &#039;formats&#039;, for example in weekly sections or named topic sections. You can show all the sections at once or just reveal one at a time. See [[Course settings]] for more information, or watch the screencast [https://www.youtube.com/watch?v=4bbQF-d2SpU How to lay out a course]. If your course looks different, watch [https://youtu.be/voYP_iE8dQI this alternative screencast].&lt;br /&gt;
&lt;br /&gt;
Course sections may be renamed by turning on the editing and clicking the configuration icon underneath the section name. Sections may also be moved by drag and drop and sections added or removed by clicking the + or - underneath the bottom section. See [[Course homepage]] for more information.&lt;br /&gt;
&lt;br /&gt;
You can also add elements, known as &#039;blocks&#039;, to the right, left or both sides of your central learning area, depending on your theme. For more information see [[Blocks]]. Remember that blocks will not display in the [[Moodle Mobile app]] so, think carefully about which blocks you really need.&lt;br /&gt;
&lt;br /&gt;
==Course enrolment==&lt;br /&gt;
&lt;br /&gt;
Before a learner can access your course, they must first be [[Authentication| authenticated on the site]] and that is the responsibility of the site administrator.&lt;br /&gt;
&lt;br /&gt;
[[File:tgcoursenrolment.png|thumb|center|600px|Enrolment methods]]&lt;br /&gt;
&lt;br /&gt;
There are several [[Enrolment methods|enrolment methods]] available to a teacher, what is available, again, depends on the site administrator.  The admin might enrol students into course automatically, or the teacher might be able to let students enrol themselves. Depending on the theme used, this can be done either by clicking the gear menu in the nav drawer link &#039;&#039;&#039;Participants&#039;&#039;&#039; or by clicking &#039;&#039;&#039;Enrolled users&#039;&#039;&#039; from the &#039;&#039;&#039;Users&#039;&#039;&#039; link in the &#039;&#039;&#039;Course administration&#039;&#039;&#039; block. This is the [[Manual enrolment]] method. Other options can be seen in the &#039;&#039;&#039;Enrolment methods&#039;&#039;&#039; link and include [[Self enrolment]] and [[Guest access]].&lt;br /&gt;
&lt;br /&gt;
{{Note|Guests can only view the course and its resources; they cannot participate in any activities.}}&lt;br /&gt;
An enrolment key may be set if [[Self enrolment]] is enabled so that only students with the key can enter. The screencast [https://youtu.be/3WeF9HPTpOM Enrolling learners] gives more information on course enrolment. If your course looks different, watch this earlier screencast on [https://youtu.be/CLTxS8lZ5ro Enrolling learners] .&lt;br /&gt;
&lt;br /&gt;
==Grading==&lt;br /&gt;
Every course has its own [[Gradebook]] which can record scores from [[Assignment|assignments]] , [[Quiz|quizzes]] , [[Workshop|peer assessment workshops]], [[Lesson|&#039;branching&#039; lessons]], [[SCORM activity|SCORM activities]] and [[External tool|LTI learning resources]].&lt;br /&gt;
&lt;br /&gt;
[[File:tggrading.png|thumb|center|600px|The grader report]]&lt;br /&gt;
&lt;br /&gt;
Other activities such as [[Forum|forums]], [[Database|databases]] and [[Glossary|glossaries]] can have ratings enabled which will also then be reflected in the gradebook.&lt;br /&gt;
&lt;br /&gt;
Grade items can be manually created from &#039;&#039;Course administration &amp;gt; Grades &amp;gt; Set up &amp;gt; Categories and items&#039;&#039; and  it is also possible to [[Grade import|import]] and [[Grade export|export]] grades.&lt;br /&gt;
&lt;br /&gt;
==Tracking progress==&lt;br /&gt;
&lt;br /&gt;
If [[Activity completion|completion tracking]] has been enabled for the site and in &#039;&#039;Course administration &amp;gt; Edit settings&#039;&#039;, you can then set completion conditions in activity settings. A checkbox will appear next to the activity and a student may either be allowed to tick it manually, or a tick will display once criteria for that particular activity have been met. This feature can be combined with [[Course completion]] so that when certain activities have been completed and/or grades obtained, the course itself is marked complete. &lt;br /&gt;
&lt;br /&gt;
[[File:tgtracking.png|thumb|center|600px|Completion boxes]]&lt;br /&gt;
&lt;br /&gt;
[[Badges]] can also be issued, manually or based on completion criteria to act as a motivator and record of course progress.&lt;br /&gt;
&lt;br /&gt;
==Restricting access==&lt;br /&gt;
&lt;br /&gt;
A course can be set to display everything to everyone all the time, or it can be very restrictive, displaying certain items at certain times, to certain groups or based on performance in previous tasks.&lt;br /&gt;
&lt;br /&gt;
[[File:tgrestrictaccess.png|thumb|center|600px|Options for restricting access]]&lt;br /&gt;
&lt;br /&gt;
Course items and sections may be manually hidden using the &#039;hide&#039; icon when the editing is turned on. If [[Restrict access]] has been enabled by the administrator then a Restrict access section will display in each course activity and resource, allowing you to choose how and when this item will be revealed, and whether to hide it completely or show it greyed out with the conditions for access.         &lt;br /&gt;
&lt;br /&gt;
[[Category:Quick guide]]&lt;br /&gt;
&lt;br /&gt;
[[es:Guía rápida del profesor]]&lt;br /&gt;
[[fi:Pikaopas opettajalle]]&lt;br /&gt;
[[fr:Guide rapide pour enseignant]]&lt;br /&gt;
[[de:Kurzanleitung für Trainer/innen]]&lt;/div&gt;</summary>
		<author><name>Marycooch</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/37/en/index.php?title=Workshop_activity&amp;diff=135953</id>
		<title>Workshop activity</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/37/en/index.php?title=Workshop_activity&amp;diff=135953"/>
		<updated>2019-12-30T11:28:48Z</updated>

		<summary type="html">&lt;p&gt;Marycooch: Reverted edits by Skaceli (talk) to last revision by Tsala&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Activities}}&lt;br /&gt;
{{Note|New to Workshop? Try our [[Workshop quick guide]].}}&lt;br /&gt;
Workshop is a powerful peer assessment activity. The documentation on [[Workshop settings]] explains the different options available. &lt;br /&gt;
&lt;br /&gt;
{{MediaPlayer | url = https://youtu.be/spPxDmPOjyQ | desc = Overview of the Workshop activity}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Students submit their own work and then receive a number of submissions from other students which they must assess according to the teacher&#039;s specifications. (They may also assess their own work if the teacher requests this.) Text may be typed directly into Moodle&#039;s editor, or files of any type may be uploaded, as long as others  have the software to view them. See &#039;&#039;&#039;[[Using Workshop]]&#039;&#039;&#039; for details of the phases involved. The teacher can decide whether to show or hide the identities of the students to each other when assessing is taking place.&lt;br /&gt;
&lt;br /&gt;
Two grades are given and appear in the Gradebook: a grade for the student&#039;s own submission and a grade for the quality of their peer assessment skills. See [[Workshop grading strategies]] for more information.&lt;br /&gt;
&lt;br /&gt;
Workshop is primarily a student-focused activity; however, the teacher may guide the students by providing example submissions for them to try out before assessing their peers and at the end of the workshop the teacher may publish some good (or less good) examples.&lt;br /&gt;
&lt;br /&gt;
For a working example of a workshop activity, see the [http://school.moodledemo.net/course/view.php?id=59 Celebrating Cultures course in the School Demonstration site.] with the username &#039;&#039;teacher&#039;&#039; and password &#039;&#039;moodle.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
&lt;br /&gt;
* [[Workshop FAQ]]&lt;br /&gt;
* [https://techcoaches.dearbornschools.org/2018/02/06/hanging-out-with-the-tech-coaches-the-moodle-workshop/ Hanging Out with the Tech Coaches: The Moodle Workshop] - live on Google Hangouts on Air, discussing how to set up a Moodle Workshop module (view recording below). Here’s a glimpse of what Amy and Bob Harrison talk about when they’re not meeting with teachers, and also a tutorial (in full or in part) on how to set up the Workshop module for your own class!&lt;br /&gt;
* [https://moodle.org/mod/forum/discuss.php?d=378257 Authentic Peer and Self Assessment?] Moodle forum thread&lt;br /&gt;
** [https://youtu.be/rBSz6hBXYak Youtube conversation] on setting up a Moodle workshop&lt;br /&gt;
** [https://techcoaches.dearbornschools.org/2017/05/03/effective-peer-assessment-that-transcends-technology/ Effective Peer Assessment that Transcends Technology]&lt;br /&gt;
** [https://techcoaches.dearbornschools.org/2016/11/15/student-centered-assessment-in-moodle/ Student-Centered Assessment in Moodle]&lt;br /&gt;
** [https://techcoaches.dearbornschools.org/2015/10/30/mr-apples-ilearn-writing-workshop/ Mr. Apple&#039;s iLearn Writing Workshop]&lt;br /&gt;
&lt;br /&gt;
[[de:Gegenseitige Beurteilung]]&lt;br /&gt;
[[es:Actividad de taller]]&lt;br /&gt;
[[fr:Atelier]]&lt;/div&gt;</summary>
		<author><name>Marycooch</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/37/en/index.php?title=Grades&amp;diff=135952</id>
		<title>Grades</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/37/en/index.php?title=Grades&amp;diff=135952"/>
		<updated>2019-12-30T11:28:34Z</updated>

		<summary type="html">&lt;p&gt;Marycooch: Reverted edits by Skaceli (talk) to last revision by Marycooch&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Tracking progress}}&lt;br /&gt;
*[[Grading quick guide]]&lt;br /&gt;
*[[Grader report]] - the Gradebook or &#039;Grader report&#039; is where all  course grades are collated.&lt;br /&gt;
*[[Grade settings]] - options for setting defaults and preferences for how the gradebook displays to users.&lt;br /&gt;
*[[Managing grades]]&lt;br /&gt;
**[[Grade hiding]]&lt;br /&gt;
**[[Grade items]]&lt;br /&gt;
**[[Grade letters]]&lt;br /&gt;
**[[Grade categories]]&lt;br /&gt;
**[[Grade calculations]]&lt;br /&gt;
**[[Grade history]]&lt;br /&gt;
*[[Scales]]&lt;br /&gt;
*[[Outcomes]]&lt;br /&gt;
*[[Grade import]]&lt;br /&gt;
*[[Grade export]]&lt;br /&gt;
*[[Advanced grading methods]]&lt;br /&gt;
**[[Rubrics]]&lt;br /&gt;
**[[Marking guide]]&lt;br /&gt;
*[[Grades FAQ]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Grades]]&lt;br /&gt;
&lt;br /&gt;
[[ca:Qualificacions]]&lt;br /&gt;
[[de:Bewertungen in Moodle]]&lt;br /&gt;
[[eu:Kalifikazioak]]&lt;br /&gt;
[[fr:Notes]]&lt;br /&gt;
[[es:Calificaciones]]&lt;br /&gt;
[[it:Valutazioni]]&lt;br /&gt;
[[ja:評定]]&lt;/div&gt;</summary>
		<author><name>Marycooch</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/37/en/index.php?title=Resources&amp;diff=135951</id>
		<title>Resources</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/37/en/index.php?title=Resources&amp;diff=135951"/>
		<updated>2019-12-30T11:28:15Z</updated>

		<summary type="html">&lt;p&gt;Marycooch: Reverted edits by Skaceli (talk) to last revision by Marycooch&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Managing a Moodle course}}&lt;br /&gt;
A resource is an item that a teacher can use to support learning, such as a file or link.  Moodle supports a range of resource types which teachers can add to their courses. In edit mode, a teacher can add resources via the &#039;Add an activity or resource&#039; link. &lt;br /&gt;
Resources appear as a single link with an icon in front of it that represents the type of resource. &lt;br /&gt;
&lt;br /&gt;
Administrators can decide whether or not to force teachers to add descriptions for each resource by enabling or disabling a site-wide setting in &#039;&#039;Administration &amp;gt; Plugins &amp;gt; Activity modules &amp;gt; Common settings&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
*[[Book module|Book]] - Multi-page resources with a book-like format. &#039;&#039; Teachers can export their Books as IMS CP&#039;&#039; (admin must allow teacher role to export IMS)&lt;br /&gt;
*[[File resource|File]] - A picture, a pdf document, a spreadsheet, a sound file, a video file&lt;br /&gt;
*[[Folder]] - For helping organize files and one folder may contain other folders&lt;br /&gt;
*[[IMS content package]] - Add static material from other sources in the  standard IMS content package format&lt;br /&gt;
*[[Label]] - Can be a few displayed words or an image used to separate resources and activities in a topic section, or can be a lengthy description or instructions&lt;br /&gt;
*[[Page]] - The student sees a single, scrollable screen that a teacher creates with the robust HTML editor&lt;br /&gt;
*[[URL resource|URL]] - You can send the student to any place they can reach on their web browser, for example Wikipedia&lt;br /&gt;
&lt;br /&gt;
==Managing resources in several languages==&lt;br /&gt;
The [https://moodle.org/plugins/availability_language restriction by language ] availability condition additional plugin makes it easy to show an English resource only to English users and an activity in French only to French speaking students. See [https://moodle.org/mod/forum/discuss.php?d=345816 this forum thread] for an example.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
&lt;br /&gt;
*[[Resources FAQ]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Resource]]&lt;br /&gt;
&lt;br /&gt;
[[de:Arbeitsmaterialien]]&lt;br /&gt;
[[es:Recursos]]&lt;br /&gt;
[[eu:Baliabideak]]&lt;br /&gt;
[[fr:Ressources]]&lt;br /&gt;
[[it:Risorse]]&lt;/div&gt;</summary>
		<author><name>Marycooch</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/37/en/index.php?title=Quiz_activity&amp;diff=135950</id>
		<title>Quiz activity</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/37/en/index.php?title=Quiz_activity&amp;diff=135950"/>
		<updated>2019-12-30T11:26:51Z</updated>

		<summary type="html">&lt;p&gt;Marycooch: Reverted edits by Skaceli (talk) to last revision by Emdalton1&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Activities}}&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;Quiz&#039;&#039;&#039; activity module allows the teacher to design and build quizzes consisting of a large variety of [[Question types]], including multiple choice, true-false, short answer and drag and drop images and text. These questions are kept in the [[Question bank]] and can be re-used in different quizzes. &lt;br /&gt;
{{Note|New to Quiz? Try our &#039;&#039;&#039;[[Quiz quick guide]].&#039;&#039;&#039;}}&lt;br /&gt;
Alternatively, read &#039;&#039;&#039;[[Quiz settings]]&#039;&#039;&#039; and &#039;&#039;&#039;[[Building Quiz]]&#039;&#039;&#039; for more detailed information on creating and organising your quiz.The documentation &#039;&#039;&#039;[[Using Quiz]]&#039;&#039;&#039; outlines  how it works for students and teachers, and &#039;&#039;&#039;[[Quiz reports]]&#039;&#039;&#039; explains grading and statistics. If you don&#039;t see what you need in these pages, try our &#039;&#039;&#039;[[Quiz FAQ]]&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
[[Image:Quizexample.png|thumb|450px|center]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
*[[Questions|Question types]]&lt;br /&gt;
*[[Effective quiz practices]]&lt;br /&gt;
*[http://www.open.edu/openlearnworks/course/view.php?id=1581 eAssessment with Moodle] by the Open University, which showcases the features of the Moodle Quiz&lt;br /&gt;
*[https://moodle.org/mod/forum/discuss.php?d=341521 studentquiz] - The Student-Quiz activity allows students to add questions for the crowd. In the Student-Quiz overview the students can filter questions. They also can use the filtered questions in the crowd to practice. Download from [https://github.com/frankkoch/moodle-mod_studentquiz GitHub]. See [https://tube.switch.ch/videos/637cda8a studentquiz video tutorial].&lt;br /&gt;
*[[Quiz Subscores]]&lt;br /&gt;
&lt;br /&gt;
[[es:Actividad de examen]]&lt;br /&gt;
[[eu:Galdetegiak]]&lt;br /&gt;
[[ja:小テストモジュール]]&lt;br /&gt;
[[ru:Тест]]&lt;br /&gt;
[[fr:Test]]&lt;br /&gt;
[[pl:Quizy]]&lt;br /&gt;
[[de:Test]]&lt;br /&gt;
[[zh:測驗卷]]&lt;/div&gt;</summary>
		<author><name>Marycooch</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/37/en/index.php?title=Courses&amp;diff=135949</id>
		<title>Courses</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/37/en/index.php?title=Courses&amp;diff=135949"/>
		<updated>2019-12-30T11:26:28Z</updated>

		<summary type="html">&lt;p&gt;Marycooch: Reverted edits by Skaceli (talk) to last revision by Marycooch&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Managing a Moodle course}}&lt;br /&gt;
Courses are the spaces on Moodle where [[Teacher| teachers]] add learning materials and activities for their students. Courses may be created by [[Administrator|admins]], [[Course creator| course creators]] or [[Manager| managers]]. Teachers can then add the content and re-organise them according to their own needs. The links below the image will provide more information about creating, organising and managing courses.&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
| [[File:screenshotcourse.png|thumb|400px|A course using the Clean theme]]&lt;br /&gt;
| [[File:MoodleMountainBoost.png|thumb|400px|A course using the Boost theme]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
*[[Adding a new course]], including the use of course templates and how to enable course requests&lt;br /&gt;
*[[Upload courses]] - how to bulk upload courses with a csv file&lt;br /&gt;
*[[Course categories]] - how to organise your courses into a hierarchy suitable for your establishment&lt;br /&gt;
*[[Course settings]] - how to control how your course appears to participants&lt;br /&gt;
*[[Course formats]] - the different ways your course sections might be laid out&lt;br /&gt;
*[[Course homepage]] - an overview of a typical course home page&lt;br /&gt;
*[[Restrict access]] according to conditions such as dates, grade obtained, group or activity completion &lt;br /&gt;
*[[Stealth activities]] - activities are not shown on the course page but remain usable by students&lt;br /&gt;
*[[Course FAQ]] - a list of frequently asked questions about Moodle courses&lt;br /&gt;
&lt;br /&gt;
[[de:Kurse]]&lt;br /&gt;
[[es:Cursos]]&lt;br /&gt;
[[it:Corsi]]&lt;/div&gt;</summary>
		<author><name>Marycooch</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/37/en/index.php?title=Course_FAQ&amp;diff=135918</id>
		<title>Course FAQ</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/37/en/index.php?title=Course_FAQ&amp;diff=135918"/>
		<updated>2019-12-07T07:55:52Z</updated>

		<summary type="html">&lt;p&gt;Marycooch: course in more than one category&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Courses}}&lt;br /&gt;
==How do I get rid of the teachers&#039; names on my course descriptions?==&lt;br /&gt;
&lt;br /&gt;
By default Moodle will show names of teachers on course descriptions. If you don&#039;t want this, uncheck the role in &#039;&#039;Administration &amp;gt; Site Administration &amp;gt; Appearance &amp;gt; Course contacts.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==How do I add the names of non-editing teachers to my course descriptions?==&lt;br /&gt;
&lt;br /&gt;
By default Moodle will only show names of teachers on course descriptions. If you want to add other roles, check the role in &#039;&#039;Administration &amp;gt; Site Administration &amp;gt; Appearance &amp;gt; Course contacts.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Some of my courses have the course summaries showing but some only have an information icon. Why?==&lt;br /&gt;
&lt;br /&gt;
Categories which have fewer than ten courses will show the full summary but those with more will only show the information icon. If you want them all to show the full summary then change the value of the Courses with summaries limit (courseswithsummarieslimit) setting in &#039;&#039;Site Administration &amp;gt; Appearance &amp;gt; Courses&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
==I can&#039;t upload files to my course. I get the message that my &#039;filetype cannot be accepted&#039;==&lt;br /&gt;
*Make sure you are not trying to upload to the course summary files area in the &#039;Edit settings&#039; area of course administration.&lt;br /&gt;
*This upload area is only for files describing the course and by default only image files are allowed (so that a screenshot may be displayed next to the summary).&lt;br /&gt;
*If you wish to upload files into your course, make sure you are first on the main course page itself, not in the settings of the course.&lt;br /&gt;
&lt;br /&gt;
==How can I prevent teachers from being able to add a particular resource or activity?==&lt;br /&gt;
From &#039;&#039;Site administration&amp;gt;Users&amp;gt;Permissions&amp;gt;Define roles,&#039;&#039; edit the teacher role and untick &amp;quot;allow&amp;quot; on the capability of the module you wish them not to add - for example &#039;&#039;mod/workshop:addinstance&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==I see two dropdown boxes instead of the Add an activity or resource link==&lt;br /&gt;
* Check in your user preferences &amp;gt;Course preferences that you have &#039;Enable activity chooser &#039;ticked&lt;br /&gt;
* Check you have Ajax enabled - the link does not appear without Ajax enabled.&lt;br /&gt;
&lt;br /&gt;
==Why am I getting dates in the future on a course I have restored?==&lt;br /&gt;
If you restored a course with user data but set the enrolment date for the present time, then logs, forum posts and so on will still be set at the same time distance from the start of the course. So if your original course began in 2010 and participants posted in a forum in 2012, then if you restore your course to begin in 2014, all those posts will have a date of 2016 on them. See MDL-44961&lt;br /&gt;
&lt;br /&gt;
==How can I make my course home page look more like a web page?==&lt;br /&gt;
&lt;br /&gt;
Often when a course has a lot of content, students and teachers find the long scrolling tedious and would prefer a &#039;neater&#039; appearance with hyperlinks to sections in a similar way to the way pages on websites work.&lt;br /&gt;
&lt;br /&gt;
See [[Stealth activities]] for information on how to do this in a Moodle course.&lt;br /&gt;
&lt;br /&gt;
==Where can I find a list of all course resources and activities?==&lt;br /&gt;
You can find a list of [[Resources|resources]] (ie static pages and folders etc) here:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://yourmoodlesite.net/course/resources.php?id=x&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; where x is the course ID number.&lt;br /&gt;
&lt;br /&gt;
If you wish to see the list of [[Activities|activities]] such as quizzes, then use a URL such as this &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://yourmoodlesite.net/mod/quiz/index.php?id=x&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; where x is the course ID number.&lt;br /&gt;
&lt;br /&gt;
Change the activity name according to the activity you need to see listed.&lt;br /&gt;
&lt;br /&gt;
==Is there a shortcut URL to a course?==&lt;br /&gt;
&lt;br /&gt;
Try this using the course shortname: URL (Moodlesite)/course/view.php?name=shortname to navigate directly to a course.&lt;br /&gt;
&lt;br /&gt;
Check out the tracker item for clean URLs: MDL-28030&lt;br /&gt;
&lt;br /&gt;
==What happens to my course content if I change the format from one format to another?==&lt;br /&gt;
&#039;&#039;&#039;For standard course formats only&#039;&#039;&#039;: If you change from Topics to Weekly or Weekly to Topics, then the only real difference will  be in the titles of the sections. If you change to Social format then you will just have a forum and if you still want access to your other activities you need to add the &amp;quot;Social activities block&amp;quot;. If you change to the Single activity format you will only see the activity you chose to display, and your other activities will be hidden from students but available to you in a greyed out section. If you then revert back from Single activity to Topics or Weekly format you will need to un-hide those sections.&lt;br /&gt;
&lt;br /&gt;
==How can I move items easily on a course with lots of activities?==&lt;br /&gt;
See the Tips and tricks section of [[Course homepage]] for a method allowing you to avoid scrolling issues when  moving an activity or resource in a  busy course.&lt;br /&gt;
&lt;br /&gt;
==Can I put a course in more than one category?==&lt;br /&gt;
&lt;br /&gt;
No. However, there is a workaround. With the Single activity course format, it is possible to add a URL as the single activity. The URL can be a redirect to a course in a different category, thus giving the appearance of a course in more than one category.&lt;br /&gt;
&lt;br /&gt;
[[Category:FAQ]]&lt;br /&gt;
&lt;br /&gt;
[[de:Kurs FAQ]]&lt;br /&gt;
[[fr:FAQ de cours]]&lt;br /&gt;
[[es:Curso FAQ]]&lt;/div&gt;</summary>
		<author><name>Marycooch</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/37/en/index.php?title=error/moodle/nologinas&amp;diff=135905</id>
		<title>error/moodle/nologinas</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/37/en/index.php?title=error/moodle/nologinas&amp;diff=135905"/>
		<updated>2019-11-27T09:09:33Z</updated>

		<summary type="html">&lt;p&gt;Marycooch: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;You have no sufficient permissions to &amp;quot;Login as&amp;quot; the user you are trying to log in as.&lt;/div&gt;</summary>
		<author><name>Marycooch</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/37/en/index.php?title=Talk:Course_overview&amp;diff=135882</id>
		<title>Talk:Course overview</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/37/en/index.php?title=Talk:Course_overview&amp;diff=135882"/>
		<updated>2019-11-21T06:52:35Z</updated>

		<summary type="html">&lt;p&gt;Marycooch: replying to Cam Howard&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;In the section titled &amp;quot;Past, In Progress and Future courses&amp;quot; the first bullet point says &amp;quot;For courses to appear in the &#039;Past&#039; section, the course end date must be in the past or the course must be completed.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
My experience is that both conditions are needed for a course to appear in the &amp;quot;Past&amp;quot; section if course completion is turned on in the course settings.&lt;br /&gt;
&lt;br /&gt;
I propose that point be updated to say &amp;quot;For courses to appear in the &#039;Past&#039; section, the course end date must be in the past or the course must be completed. If course completion is turned on in the course settings, the course will not appear in the &#039;Past&#039; section until course completion conditions are met even if the course end date is in the past.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Is this proposed wording accurate?&lt;br /&gt;
&lt;br /&gt;
--[[User:Cam Howard|Cam Howard]] ([[User talk:Cam Howard|talk]]) 17:37, 20 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
==Response==&lt;br /&gt;
Hello there. Feel free to edit the docs page as it is a wiki and all contributions are welcome :)&lt;br /&gt;
--[[User:Mary Cooch|Mary Cooch]] ([[User talk:Mary Cooch|talk]]) 06:52, 21 November 2019 (UTC)&lt;/div&gt;</summary>
		<author><name>Marycooch</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/37/en/index.php?title=Enable_guest_access&amp;diff=135793</id>
		<title>Enable guest access</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/37/en/index.php?title=Enable_guest_access&amp;diff=135793"/>
		<updated>2019-10-30T09:17:49Z</updated>

		<summary type="html">&lt;p&gt;Marycooch: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Note|You must first enable guest access on your site and then in your course.}}&lt;br /&gt;
==Guest access to the site==&lt;br /&gt;
&lt;br /&gt;
1. Log in with your administrator account&lt;br /&gt;
&lt;br /&gt;
2. From the left panel (the Navigation drawer) click &#039;&#039;&#039;Site administration&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
3. Click &#039;&#039;&#039;Users&#039;&#039;&#039; and then from &#039;&#039;&#039;Permissions&#039;&#039;&#039;, click &#039;&#039;&#039;User policies&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
4. Tick the box &#039;&#039;&#039;Auto-login guests&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:autologintick.png|Center]]&lt;br /&gt;
&lt;br /&gt;
5. Click the &#039;&#039;&#039;Plugins&amp;quot; tab and scroll down to &#039;&#039;&#039;Authentication&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
6. Click &#039;&#039;&#039;Manage authentication&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
7. Make sure the Guest login button is set to &#039;Show&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:guestloginshow.png|Center]]&lt;br /&gt;
&lt;br /&gt;
==Guest access to the course==&lt;br /&gt;
#Log in with your administrator account or a teacher account&lt;br /&gt;
#Go to the course you want to allow users to access&lt;br /&gt;
#From the left panel (Navigation drawer) click &#039;&#039;&#039;Participants&#039;&#039;&#039;&lt;br /&gt;
#Click the cog icon on the right [[File:cogicon.png]](above Enrol users) and select &#039;&#039;&#039;Enrolment methods&#039;&#039;&#039;&lt;br /&gt;
#Click to open the eye of &#039;&#039;&#039;Guest access&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Helpful videos==&lt;br /&gt;
Guest access to the site:&lt;br /&gt;
&lt;br /&gt;
{{MediaPlayer | url = https://youtu.be/KA9VdsqPhoM}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Guest access to the course&lt;br /&gt;
&lt;br /&gt;
{{MediaPlayer | url = https://youtu.be/9X8dVVRw52w}}&lt;/div&gt;</summary>
		<author><name>Marycooch</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/37/en/index.php?title=Create_a_user&amp;diff=135770</id>
		<title>Create a user</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/37/en/index.php?title=Create_a_user&amp;diff=135770"/>
		<updated>2019-10-24T09:52:03Z</updated>

		<summary type="html">&lt;p&gt;Marycooch: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Note|Note that in Moodle, you create users first and only give them a student or teacher role once they are in a course.}}&lt;br /&gt;
&lt;br /&gt;
#Log in with your administrator account&lt;br /&gt;
#From the left panel (the Navigation drawer) click &#039;&#039;&#039;Site administration&#039;&#039;&#039;&lt;br /&gt;
#Click the &#039;&#039;&#039;Users&#039;&#039;&#039; tab&lt;br /&gt;
#Click &#039;&#039;&#039;Add a new user&#039;&#039;&#039;&lt;br /&gt;
#Add your user details, using the icon [[File:helpicon.png]] for extra help&lt;br /&gt;
#If you want their new account details emailed to them, click &#039;&#039;&#039;Generate password and notify user&#039;&#039;&#039;&lt;br /&gt;
#Click &#039;&#039;&#039;Create user&#039;&#039;&#039;&lt;/div&gt;</summary>
		<author><name>Marycooch</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/37/en/index.php?title=Change_your_front_page&amp;diff=135768</id>
		<title>Change your front page</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/37/en/index.php?title=Change_your_front_page&amp;diff=135768"/>
		<updated>2019-10-23T11:04:07Z</updated>

		<summary type="html">&lt;p&gt;Marycooch: /* Helpful video */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*Your Moodle front page is known as &#039;&#039;&#039;Site home.&#039;&#039;&#039; This is the page non-logged in users see.&lt;br /&gt;
*With  MoodleCloud sites by default, you just see the login page until you are logged in.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Change site name and course information==&lt;br /&gt;
#Log in with your administrator account&lt;br /&gt;
#From the left panel (the Navigation drawer) click &#039;&#039;&#039;Site administration&#039;&#039;&#039;&lt;br /&gt;
#Scroll down to the &#039;&#039;&#039;Front page&#039;&#039;&#039; section and click &#039;&#039;&#039;Front page settings&#039;&#039;&#039;&lt;br /&gt;
#Change the long and short name of your site here. &lt;br /&gt;
#Decide which items will be shown to non-logged in and logged in users from the two drop downs.&lt;br /&gt;
#Click &#039;&#039;&#039;Save changes&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Add a site summary to the central area==&lt;br /&gt;
#Log in with your administrator account and go to the front page/Site home&lt;br /&gt;
#Click the cog/Edit icon top right to turn on the editing&lt;br /&gt;
#Click the cog/Edit icon on the left to display a text editor where you can add your site information.&lt;br /&gt;
&lt;br /&gt;
==Landing page when logged in==&lt;br /&gt;
*By default your users will be sent to their personal &#039;&#039;&#039;Dashboard&#039;&#039;&#039; page once they have logged in. This gives information about courses they are enrolled in.&lt;br /&gt;
*You can change this so that they go to the Site home (front page) if you prefer.&lt;br /&gt;
&lt;br /&gt;
#Log in with your administrator account&lt;br /&gt;
#From the left panel (the Navigation drawer) click &#039;&#039;&#039;Site administration&#039;&#039;&#039;&lt;br /&gt;
#Click the &#039;&#039;&#039;Appearance&#039;&#039;&#039; tab&lt;br /&gt;
#Click &#039;&#039;&#039;Navigation&#039;&#039;&#039;&lt;br /&gt;
#Change the Home page for users to &#039;&#039;&#039;Site.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Helpful video==&lt;br /&gt;
EMBEDDED VIDEO HERE&lt;br /&gt;
&lt;br /&gt;
==Learn more==&lt;/div&gt;</summary>
		<author><name>Marycooch</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/37/en/index.php?title=Change_your_front_page&amp;diff=135767</id>
		<title>Change your front page</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/37/en/index.php?title=Change_your_front_page&amp;diff=135767"/>
		<updated>2019-10-23T11:03:38Z</updated>

		<summary type="html">&lt;p&gt;Marycooch: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*Your Moodle front page is known as &#039;&#039;&#039;Site home.&#039;&#039;&#039; This is the page non-logged in users see.&lt;br /&gt;
*With  MoodleCloud sites by default, you just see the login page until you are logged in.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Change site name and course information==&lt;br /&gt;
#Log in with your administrator account&lt;br /&gt;
#From the left panel (the Navigation drawer) click &#039;&#039;&#039;Site administration&#039;&#039;&#039;&lt;br /&gt;
#Scroll down to the &#039;&#039;&#039;Front page&#039;&#039;&#039; section and click &#039;&#039;&#039;Front page settings&#039;&#039;&#039;&lt;br /&gt;
#Change the long and short name of your site here. &lt;br /&gt;
#Decide which items will be shown to non-logged in and logged in users from the two drop downs.&lt;br /&gt;
#Click &#039;&#039;&#039;Save changes&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Add a site summary to the central area==&lt;br /&gt;
#Log in with your administrator account and go to the front page/Site home&lt;br /&gt;
#Click the cog/Edit icon top right to turn on the editing&lt;br /&gt;
#Click the cog/Edit icon on the left to display a text editor where you can add your site information.&lt;br /&gt;
&lt;br /&gt;
==Landing page when logged in==&lt;br /&gt;
*By default your users will be sent to their personal &#039;&#039;&#039;Dashboard&#039;&#039;&#039; page once they have logged in. This gives information about courses they are enrolled in.&lt;br /&gt;
*You can change this so that they go to the Site home (front page) if you prefer.&lt;br /&gt;
&lt;br /&gt;
#Log in with your administrator account&lt;br /&gt;
#From the left panel (the Navigation drawer) click &#039;&#039;&#039;Site administration&#039;&#039;&#039;&lt;br /&gt;
#Click the &#039;&#039;&#039;Appearance&#039;&#039;&#039; tab&lt;br /&gt;
#Click &#039;&#039;&#039;Navigation&#039;&#039;&#039;&lt;br /&gt;
#Change the Home page for users to &#039;&#039;&#039;Site.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Helpful video==&lt;br /&gt;
EMBEDDED VIDEO HERE&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{Note|To make the site summary appear in the central area&lt;/div&gt;</summary>
		<author><name>Marycooch</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/37/en/index.php?title=Change_your_front_page&amp;diff=135766</id>
		<title>Change your front page</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/37/en/index.php?title=Change_your_front_page&amp;diff=135766"/>
		<updated>2019-10-23T11:03:06Z</updated>

		<summary type="html">&lt;p&gt;Marycooch: /* Landing page when logged in */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*Your Moodle front page is known as &#039;&#039;&#039;Site home.&#039;&#039;&#039; This is the page non-logged in users see.&lt;br /&gt;
*With  MoodleCloud sites by default, you just see the login page until you are logged in.&lt;br /&gt;
&lt;br /&gt;
==Landing page when logged in==&lt;br /&gt;
*By default your users will be sent to their personal &#039;&#039;&#039;Dashboard&#039;&#039;&#039; page once they have logged in. This gives information about courses they are enrolled in.&lt;br /&gt;
*You can change this so that they go to the Site home (front page) if you prefer.&lt;br /&gt;
&lt;br /&gt;
#Log in with your administrator account&lt;br /&gt;
#From the left panel (the Navigation drawer) click &#039;&#039;&#039;Site administration&#039;&#039;&#039;&lt;br /&gt;
#Click the &#039;&#039;&#039;Appearance&#039;&#039;&#039; tab&lt;br /&gt;
#Click &#039;&#039;&#039;Navigation&#039;&#039;&#039;&lt;br /&gt;
#Change the Home page for users to &#039;&#039;&#039;Site.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Change site name and course information==&lt;br /&gt;
#Log in with your administrator account&lt;br /&gt;
#From the left panel (the Navigation drawer) click &#039;&#039;&#039;Site administration&#039;&#039;&#039;&lt;br /&gt;
#Scroll down to the &#039;&#039;&#039;Front page&#039;&#039;&#039; section and click &#039;&#039;&#039;Front page settings&#039;&#039;&#039;&lt;br /&gt;
#Change the long and short name of your site here. &lt;br /&gt;
#Decide which items will be shown to non-logged in and logged in users from the two drop downs.&lt;br /&gt;
#Click &#039;&#039;&#039;Save changes&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Add a site summary to the central area==&lt;br /&gt;
#Log in with your administrator account and go to the front page/Site home&lt;br /&gt;
#Click the cog/Edit icon top right to turn on the editing&lt;br /&gt;
#Click the cog/Edit icon on the left to display a text editor where you can add your site information.&lt;br /&gt;
&lt;br /&gt;
==Helpful video==&lt;br /&gt;
EMBEDDED VIDEO HERE&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{Note|To make the site summary appear in the central area&lt;/div&gt;</summary>
		<author><name>Marycooch</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/37/en/index.php?title=Change_your_front_page&amp;diff=135765</id>
		<title>Change your front page</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/37/en/index.php?title=Change_your_front_page&amp;diff=135765"/>
		<updated>2019-10-23T11:02:48Z</updated>

		<summary type="html">&lt;p&gt;Marycooch: wip&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*Your Moodle front page is known as &#039;&#039;&#039;Site home.&#039;&#039;&#039; This is the page non-logged in users see.&lt;br /&gt;
*With  MoodleCloud sites by default, you just see the login page until you are logged in.&lt;br /&gt;
&lt;br /&gt;
==Landing page when logged in==&lt;br /&gt;
*By default your users will be sent to their personal &#039;&#039;&#039;Dashboard&#039;&#039;&#039; page once they have logged in. This gives information about courses they are enrolled in.&lt;br /&gt;
*You can change this so that they go to the Site home (front page) if you prefer.&lt;br /&gt;
&lt;br /&gt;
#Log in with your administrator account&lt;br /&gt;
#From the left panel (the Navigation drawer) click &#039;&#039;&#039;Site administration&#039;&#039;&#039;&lt;br /&gt;
#Click the &#039;&#039;&#039;Appearance&#039;&#039; tab&lt;br /&gt;
#Click &#039;&#039;&#039;Navigation&#039;&#039;&#039;&lt;br /&gt;
#Change the Home page for users to &#039;&#039;&#039;Site.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Change site name and course information==&lt;br /&gt;
#Log in with your administrator account&lt;br /&gt;
#From the left panel (the Navigation drawer) click &#039;&#039;&#039;Site administration&#039;&#039;&#039;&lt;br /&gt;
#Scroll down to the &#039;&#039;&#039;Front page&#039;&#039;&#039; section and click &#039;&#039;&#039;Front page settings&#039;&#039;&#039;&lt;br /&gt;
#Change the long and short name of your site here. &lt;br /&gt;
#Decide which items will be shown to non-logged in and logged in users from the two drop downs.&lt;br /&gt;
#Click &#039;&#039;&#039;Save changes&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Add a site summary to the central area==&lt;br /&gt;
#Log in with your administrator account and go to the front page/Site home&lt;br /&gt;
#Click the cog/Edit icon top right to turn on the editing&lt;br /&gt;
#Click the cog/Edit icon on the left to display a text editor where you can add your site information.&lt;br /&gt;
&lt;br /&gt;
==Helpful video==&lt;br /&gt;
EMBEDDED VIDEO HERE&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{Note|To make the site summary appear in the central area&lt;/div&gt;</summary>
		<author><name>Marycooch</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/37/en/index.php?title=Manage_content_display&amp;diff=135764</id>
		<title>Manage content display</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/37/en/index.php?title=Manage_content_display&amp;diff=135764"/>
		<updated>2019-10-23T09:21:49Z</updated>

		<summary type="html">&lt;p&gt;Marycooch: /* Manage filters */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*Moodle has a number of &#039;&#039;&#039;Filters&#039;&#039;&#039; which affect how content is displayed on your Moodle site.&lt;br /&gt;
*These filters can for example, transform YouTube URLs into embedded videos, or automatically link text to glossary entries or related activity names.&lt;br /&gt;
* As administrator you can control which filters are made available to course teachers on the site.&lt;br /&gt;
===Manage filters===&lt;br /&gt;
#Log in with your administrator account&lt;br /&gt;
#From the left panel (the Navigation drawer) click &#039;&#039;&#039;Site administration&#039;&#039;&#039;&lt;br /&gt;
#Click the &#039;&#039;&#039;Plugins tab&#039;&#039;&#039; and scroll down to &#039;&#039;&#039;Filters&#039;&#039;&#039;&lt;br /&gt;
#Click &#039;&#039;&#039;Manage Filters&#039;&#039;&#039;&lt;br /&gt;
#Choose the option you want for each filter. (Leaving the defaults is fine!)&lt;br /&gt;
#*On - this will be available for everyone in all courses&lt;br /&gt;
#*Off  - nobody will be able to use this &lt;br /&gt;
#*Off but available - course teachers will be able to turn it on in their own courses  or individual activities if they need it.&lt;br /&gt;
#(Optionally) from &#039;&#039;&#039;Common filter settings,&#039;&#039;&#039; you can decide if you want text linking filters to link to every instance of text or only the first one.&lt;br /&gt;
&lt;br /&gt;
==Helpful videos==&lt;br /&gt;
EMBEDDED ADMIN VIDEO TO GO HERE&lt;br /&gt;
&lt;br /&gt;
LEARN MOODLE EDUCATOR VIDEO TO GO HERE TOO&lt;/div&gt;</summary>
		<author><name>Marycooch</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/37/en/index.php?title=Manage_content_display&amp;diff=135763</id>
		<title>Manage content display</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/37/en/index.php?title=Manage_content_display&amp;diff=135763"/>
		<updated>2019-10-23T09:19:42Z</updated>

		<summary type="html">&lt;p&gt;Marycooch: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*Moodle has a number of &#039;&#039;&#039;Filters&#039;&#039;&#039; which affect how content is displayed on your Moodle site.&lt;br /&gt;
*These filters can for example, transform YouTube URLs into embedded videos, or automatically link text to glossary entries or related activity names.&lt;br /&gt;
* As administrator you can control which filters are made available to course teachers on the site.&lt;br /&gt;
===Manage filters===&lt;br /&gt;
#Log in with your administrator account&lt;br /&gt;
#From the left panel (the Navigation drawer) click &#039;&#039;&#039;Site administration&#039;&#039;&#039;&lt;br /&gt;
#Click the &#039;&#039;&#039;Plugins&amp;quot; tab and scroll down to &#039;&#039;&#039;Filters&#039;&#039;&#039;&lt;br /&gt;
#Click &#039;&#039;&#039;Manage Filters&#039;&#039;&#039;&lt;br /&gt;
#Choose the option you want for each filter. (Leaving the defaults is fine!)&lt;br /&gt;
#*On - this will be available for everyone in all courses&lt;br /&gt;
#*Off  - nobody will be able to use this &lt;br /&gt;
#*Off but available - course teachers will be able to turn it on in their own courses  or individual activities if they need it.&lt;br /&gt;
#(Optionally) from &#039;&#039;&#039;Common filter settings,&#039;&#039;&#039; you can decide if you want text linking filters to link to every instance of text or only the first one.&lt;br /&gt;
&lt;br /&gt;
==Helpful videos==&lt;br /&gt;
EMBEDDED ADMIN VIDEO TO GO HERE&lt;br /&gt;
&lt;br /&gt;
LEARN MOODLE EDUCATOR VIDEO TO GO HERE TOO&lt;/div&gt;</summary>
		<author><name>Marycooch</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/37/en/index.php?title=Manage_content_display&amp;diff=135762</id>
		<title>Manage content display</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/37/en/index.php?title=Manage_content_display&amp;diff=135762"/>
		<updated>2019-10-23T09:19:24Z</updated>

		<summary type="html">&lt;p&gt;Marycooch: wip&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*Moodle has a number of &#039;&#039;&#039;Filters&#039;&#039;&#039; which affect how content is displayed on your Moodle site.&lt;br /&gt;
*These filters can for example, transform youtube URLs into embedded videos, or automatically link text to glossary entries or related activity names.&lt;br /&gt;
* As administrator you can control which filters are made available to course teachers on the site.&lt;br /&gt;
===Manage filters===&lt;br /&gt;
#Log in with your administrator account&lt;br /&gt;
#From the left panel (the Navigation drawer) click &#039;&#039;&#039;Site administration&#039;&#039;&#039;&lt;br /&gt;
#Click the &#039;&#039;&#039;Plugins&amp;quot; tab and scroll down to &#039;&#039;&#039;Filters&#039;&#039;&#039;&lt;br /&gt;
#Click &#039;&#039;&#039;Manage Filters&#039;&#039;&#039;&lt;br /&gt;
#Choose the option you want for each filter. (Leaving the defaults is fine!)&lt;br /&gt;
#*On - this will be available for everyone in all courses&lt;br /&gt;
#*Off  - nobody will be able to use this &lt;br /&gt;
#*Off but available - course teachers will be able to turn it on in their own courses  or individual activities if they need it.&lt;br /&gt;
#(Optionally) from &#039;&#039;&#039;Common filter settings,&#039;&#039;&#039; you can decide if you want text linking filters to link to every instance of text or only the first one.&lt;br /&gt;
&lt;br /&gt;
==Helpful videos==&lt;br /&gt;
EMBEDDED ADMIN VIDEO TO GO HERE&lt;br /&gt;
&lt;br /&gt;
LEARN MOODLE EDUCATOR VIDEO TO GO HERE TOO&lt;/div&gt;</summary>
		<author><name>Marycooch</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/37/en/index.php?title=Manage_file_uploads&amp;diff=135761</id>
		<title>Manage file uploads</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/37/en/index.php?title=Manage_file_uploads&amp;diff=135761"/>
		<updated>2019-10-23T09:07:28Z</updated>

		<summary type="html">&lt;p&gt;Marycooch: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Uploading files==&lt;br /&gt;
&lt;br /&gt;
*In many places in Moodle, users will see a notice saying they can drag and drop files to upload them.&lt;br /&gt;
*They can also add files from what Moodle calls &#039;&#039;&#039;Repositories&#039;&#039;&#039; which allow them to upload from their computer, import from Google Drive (for example), Wikipedia and other external sites.&lt;br /&gt;
*Uploaded files can take up a lot of space on your server. With MoodleCloud sites your storage space is restricted, so try to encourage teachers and students to use external sites such as Google Drive or OneDrive.&lt;br /&gt;
&lt;br /&gt;
==Repositories==&lt;br /&gt;
As an administrator you can control, enable or disable the repositories from which users can add files.&lt;br /&gt;
&lt;br /&gt;
1. Log in with your administrator account&lt;br /&gt;
&lt;br /&gt;
2. From the left panel (the Navigation drawer) click &#039;&#039;&#039;Site administration&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
3. Click the &#039;&#039;&#039;Plugins&#039;&#039; tab&lt;br /&gt;
&lt;br /&gt;
4. Click &#039;&#039;&#039;Repositories&#039;&#039;&#039; and then &#039;&#039;&#039;Manage repositories&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
5. Enable or disable repositories from their dropdowns. For some repositories you need also to click and configure their &#039;&#039;&#039;Settings&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Maximum upload size==&lt;br /&gt;
You can control the largest size file which users can upload on your site and teachers can control it in their courses.&lt;br /&gt;
&lt;br /&gt;
1. Log in with your administrator account&lt;br /&gt;
&lt;br /&gt;
2. From the left panel (the Navigation drawer) click &#039;&#039;&#039;Site administration&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
3. Scroll down to  &#039;&#039;&#039;Security&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
4. Click &amp;quot;Site security settings&amp;quot; and choose the maximum file size.&lt;br /&gt;
&lt;br /&gt;
5. Go to a course with your administrator or teacher account.&lt;br /&gt;
&lt;br /&gt;
6. Click the cog/ edit icon top right and &#039;&#039;&#039;Edit  settings&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
7. From the section &#039;&#039;&#039;Files and uploads,&#039;&#039;&#039; choose the maxium file size users should be able to upload.&lt;br /&gt;
&lt;br /&gt;
8. In activities where files can be uploaded, for example in Forums or Assignments, you can also choose the maximum upload size from the activity settings.&lt;br /&gt;
&lt;br /&gt;
==Allowed file types==&lt;br /&gt;
You can control the types of files  allowed on your site if you need to.&lt;br /&gt;
&lt;br /&gt;
1. Log in with your administrator account&lt;br /&gt;
&lt;br /&gt;
2. From the left panel (the Navigation drawer) click &#039;&#039;&#039;Site administration&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
3. Click the &#039;&#039;&#039;Server&#039;&#039;&#039; tab&lt;br /&gt;
&lt;br /&gt;
4. Click &#039;&#039;&#039;File types&#039;&#039;&#039; and edit as you wish.&lt;br /&gt;
&lt;br /&gt;
==Helpful video==&lt;br /&gt;
&lt;br /&gt;
EMBEDDED VIDEO TO GO HERE&lt;br /&gt;
&lt;br /&gt;
==Learn more==&lt;/div&gt;</summary>
		<author><name>Marycooch</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/37/en/index.php?title=Manage_file_uploads&amp;diff=135760</id>
		<title>Manage file uploads</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/37/en/index.php?title=Manage_file_uploads&amp;diff=135760"/>
		<updated>2019-10-23T09:00:11Z</updated>

		<summary type="html">&lt;p&gt;Marycooch: wip&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Uploading files==&lt;br /&gt;
&lt;br /&gt;
*In many places in Moodle, users will see a notice saying they can drag and drop files to upload them.&lt;br /&gt;
*They can also add files from what Moodle calls &#039;&#039;&#039;Repositories&#039;&#039;&#039; which allow them to upload from their computer, import from Google Drive (for example), Wikipedia and other external sites.&lt;br /&gt;
*Uploaded files can take up a lot of space on your server. With MoodleCloud sites your storage space is restricted, so try to encourage teachers and students to use external sites such as Google Drive or OneDrive.&lt;br /&gt;
&lt;br /&gt;
==Repositories==&lt;br /&gt;
As an administrator you can control, enable or disable the repositories from which users can add files.&lt;br /&gt;
&lt;br /&gt;
1. Log in with your administrator account&lt;br /&gt;
&lt;br /&gt;
2. From the left panel (the Navigation drawer) click &#039;&#039;&#039;Site administration&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
3. Click the &#039;&#039;&#039;Plugins&#039;&#039; tab&lt;br /&gt;
&lt;br /&gt;
4. Click &#039;&#039;&#039;Repositories&#039;&#039;&#039; and then &#039;&#039;&#039;Manage repositories&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
5. Enable or disable repositories from their dropdowns. For some repositories you need also to click and configure their &#039;&#039;&#039;Settings&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Maximum upload size==&lt;br /&gt;
You can control the largest size file which users can upload on your site and teachers can control it in their courses.&lt;br /&gt;
&lt;br /&gt;
1. Log in with your administrator account&lt;br /&gt;
&lt;br /&gt;
2. From the left panel (the Navigation drawer) click &#039;&#039;&#039;Site administration&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
3. Scroll down to  &#039;&#039;&#039;Security&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
4. Click &amp;quot;Site security settings&amp;quot; and choose the maximum file size.&lt;br /&gt;
&lt;br /&gt;
5. Go to a course with your administrator or teacher account.&lt;br /&gt;
&lt;br /&gt;
6. Click the cog/ edit icon top right and &#039;&#039;&#039;Edit  settings&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
7. From the section &#039;&#039;&#039;Files and uploads,&#039;&#039;&#039; choose the maxium file size users should be able to upload.&lt;br /&gt;
&lt;br /&gt;
8. In activities where files can be uploaded, for example in Forums or Assignments, you can also choose the maximum upload size from the activity settings.&lt;/div&gt;</summary>
		<author><name>Marycooch</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/37/en/index.php?title=Manage_users&amp;diff=135757</id>
		<title>Manage users</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/37/en/index.php?title=Manage_users&amp;diff=135757"/>
		<updated>2019-10-22T11:15:30Z</updated>

		<summary type="html">&lt;p&gt;Marycooch: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Note| See [[Add new users]] to learn how to create accounts on your site.}}&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Administrators&#039;&#039;&#039; on a Moodle site can see and do everything. Choose your admins wisely!&lt;br /&gt;
*All new users who log into Moodle have a role “authenticated user”. They must be added to courses as students or teachers. They don&#039;t have the role sitewide. Make sure you understand the idea of &#039;context&#039; in roles&lt;br /&gt;
*Moodle has a number of standard roles such as &#039;&#039;&#039;Teacher&#039;&#039;&#039; and &#039;&#039;&#039;Student.&#039;&#039;&#039;&lt;br /&gt;
*&#039;&#039;&#039;Permissions&#039;&#039;&#039; are a collection of &#039;&#039;&#039;capabilities&#039;&#039;&#039; (things a role is allowed to do) You can change, give or remove capabilities for roles to adapt them to your needs. &lt;br /&gt;
&lt;br /&gt;
==View and edit your users==&lt;br /&gt;
#Log in with your administrator account&lt;br /&gt;
#From the left panel (the Navigation drawer) click &#039;&#039;&#039;Site administration&#039;&#039;&#039;&lt;br /&gt;
#Click the &#039;&#039;&#039;Users&#039;&#039;&#039; tab&lt;br /&gt;
#From the &#039;&#039;&#039;Accounts&#039;&#039;&#039; section, click  &#039;&#039;&#039;Browse list of users&#039;&#039;&#039;&lt;br /&gt;
#From here you can view and edit existing accounts on your site.&lt;br /&gt;
&lt;br /&gt;
==View and edit standard roles==&lt;br /&gt;
#Log in with your administrator account&lt;br /&gt;
#From the left panel (the Navigation drawer) click &#039;&#039;&#039;Site administration&#039;&#039;&#039;&lt;br /&gt;
#Click the &#039;&#039;&#039;Users&#039;&#039;&#039; tab&lt;br /&gt;
#From the &#039;&#039;&#039;Permissions&#039;&#039;&#039; tab, click &#039;&#039;&#039;Define roles&#039;&#039;&#039;&lt;br /&gt;
#Click the Edit icon next to a role to change its name or capabilities (what the role can or can&#039;t do)&lt;br /&gt;
&lt;br /&gt;
{{Note| No need to change any roles if you are not confident!}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Helpful video==&lt;br /&gt;
&lt;br /&gt;
[EMBEDDED VIDEO TO GO HERE]]&lt;/div&gt;</summary>
		<author><name>Marycooch</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/37/en/index.php?title=Manage_users&amp;diff=135756</id>
		<title>Manage users</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/37/en/index.php?title=Manage_users&amp;diff=135756"/>
		<updated>2019-10-22T11:14:06Z</updated>

		<summary type="html">&lt;p&gt;Marycooch: /* View and edit standard roles */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*&#039;&#039;&#039;Administrators&#039;&#039;&#039; on a Moodle site can see and do everything. Choose your admins wisely!&lt;br /&gt;
*All new users who log into Moodle have a role “authenticated user”. They must be added to courses as students or teachers. They don&#039;t have the role sitewide. Make sure you understand the idea of &#039;context&#039; in roles&lt;br /&gt;
*Moodle has a number of standard roles such as &#039;&#039;&#039;Teacher&#039;&#039;&#039; and &#039;&#039;&#039;Student.&#039;&#039;&#039;&lt;br /&gt;
*&#039;&#039;&#039;Permissions&#039;&#039;&#039; are a collection of &#039;&#039;&#039;capabilities&#039;&#039;&#039; (things a role is allowed to do) You can change, give or remove capabilities for roles to adapt them to your needs. &lt;br /&gt;
&lt;br /&gt;
==View and edit your users==&lt;br /&gt;
#Log in with your administrator account&lt;br /&gt;
#From the left panel (the Navigation drawer) click &#039;&#039;&#039;Site administration&#039;&#039;&#039;&lt;br /&gt;
#Click the &#039;&#039;&#039;Users&#039;&#039;&#039; tab&lt;br /&gt;
#From the &#039;&#039;&#039;Accounts&#039;&#039;&#039; section, click  &#039;&#039;&#039;Browse list of users&#039;&#039;&#039;&lt;br /&gt;
#From here you can view and edit existing accounts on your site.&lt;br /&gt;
&lt;br /&gt;
==View and edit standard roles==&lt;br /&gt;
#Log in with your administrator account&lt;br /&gt;
#From the left panel (the Navigation drawer) click &#039;&#039;&#039;Site administration&#039;&#039;&#039;&lt;br /&gt;
#Click the &#039;&#039;&#039;Users&#039;&#039;&#039; tab&lt;br /&gt;
#From the &#039;&#039;&#039;Permissions&#039;&#039;&#039; tab, click &#039;&#039;&#039;Define roles&#039;&#039;&#039;&lt;br /&gt;
#Click the Edit icon next to a role to change its name or capabilities (what the role can or can&#039;t do)&lt;br /&gt;
&lt;br /&gt;
{{Note| No need to change any roles if you are not confident!}}&lt;br /&gt;
&lt;br /&gt;
==Learn more==&lt;br /&gt;
[[Add new users]]&lt;br /&gt;
&lt;br /&gt;
==Helpful video==&lt;br /&gt;
&lt;br /&gt;
[EMBEDDED VIDEO TO GO HERE]]&lt;/div&gt;</summary>
		<author><name>Marycooch</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/37/en/index.php?title=Manage_users&amp;diff=135755</id>
		<title>Manage users</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/37/en/index.php?title=Manage_users&amp;diff=135755"/>
		<updated>2019-10-22T11:08:46Z</updated>

		<summary type="html">&lt;p&gt;Marycooch: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*&#039;&#039;&#039;Administrators&#039;&#039;&#039; on a Moodle site can see and do everything. Choose your admins wisely!&lt;br /&gt;
*All new users who log into Moodle have a role “authenticated user”. They must be added to courses as students or teachers. They don&#039;t have the role sitewide. Make sure you understand the idea of &#039;context&#039; in roles&lt;br /&gt;
*Moodle has a number of standard roles such as &#039;&#039;&#039;Teacher&#039;&#039;&#039; and &#039;&#039;&#039;Student.&#039;&#039;&#039;&lt;br /&gt;
*&#039;&#039;&#039;Permissions&#039;&#039;&#039; are a collection of &#039;&#039;&#039;capabilities&#039;&#039;&#039; (things a role is allowed to do) You can change, give or remove capabilities for roles to adapt them to your needs. &lt;br /&gt;
&lt;br /&gt;
==View and edit your users==&lt;br /&gt;
#Log in with your administrator account&lt;br /&gt;
#From the left panel (the Navigation drawer) click &#039;&#039;&#039;Site administration&#039;&#039;&#039;&lt;br /&gt;
#Click the &#039;&#039;&#039;Users&#039;&#039;&#039; tab&lt;br /&gt;
#From the &#039;&#039;&#039;Accounts&#039;&#039;&#039; section, click  &#039;&#039;&#039;Browse list of users&#039;&#039;&#039;&lt;br /&gt;
#From here you can view and edit existing accounts on your site.&lt;br /&gt;
&lt;br /&gt;
==View and edit standard roles==&lt;br /&gt;
#Log in with your administrator account&lt;br /&gt;
#From the left panel (the Navigation drawer) click &#039;&#039;&#039;Site administration&#039;&#039;&#039;&lt;br /&gt;
#Click the &#039;&#039;&#039;Users&#039;&#039;&#039; tab&lt;br /&gt;
#From the &#039;&#039;&#039;Permissions&#039;&#039;&#039; tab, click &#039;&#039;&#039;Define roles&#039;&#039;&#039;&lt;br /&gt;
#Click the Edit icon next to a role to change its name or capabilities (what the role can or can&#039;t do)&lt;br /&gt;
&lt;br /&gt;
{{Note:| No need to change any roles if you are not confident}}&lt;br /&gt;
&lt;br /&gt;
==Helpful video==&lt;br /&gt;
&lt;br /&gt;
[EMBEDDED VIDEO TO GO HERE]]&lt;/div&gt;</summary>
		<author><name>Marycooch</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/37/en/index.php?title=Manage_users&amp;diff=135754</id>
		<title>Manage users</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/37/en/index.php?title=Manage_users&amp;diff=135754"/>
		<updated>2019-10-22T10:51:07Z</updated>

		<summary type="html">&lt;p&gt;Marycooch: Protected &amp;quot;Manage users&amp;quot;: Admin basics page (to be kept simple) ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite))&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;wip&lt;/div&gt;</summary>
		<author><name>Marycooch</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/37/en/index.php?title=Manage_users&amp;diff=135753</id>
		<title>Manage users</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/37/en/index.php?title=Manage_users&amp;diff=135753"/>
		<updated>2019-10-22T10:50:57Z</updated>

		<summary type="html">&lt;p&gt;Marycooch: Created page with &amp;quot;wip&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;wip&lt;/div&gt;</summary>
		<author><name>Marycooch</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/37/en/index.php?title=Set_up_payment&amp;diff=135752</id>
		<title>Set up payment</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/37/en/index.php?title=Set_up_payment&amp;diff=135752"/>
		<updated>2019-10-22T10:38:13Z</updated>

		<summary type="html">&lt;p&gt;Marycooch: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*Moodle works with &#039;&#039;&#039;Paypal&#039;&#039;&#039; to allow you to charge for your courses.&lt;br /&gt;
*Anyone who wants to buy a course must first have an account on your site. You might want to [[Enable sign up]]&lt;br /&gt;
&lt;br /&gt;
==Set up Paypal on your site==&lt;br /&gt;
#Log in with your administrator account&lt;br /&gt;
#From the left panel (the Navigation drawer) click &#039;&#039;&#039;Site administration&#039;&#039;&#039;&lt;br /&gt;
#Click the &#039;&#039;&#039;Plugins&amp;quot; tab and scroll down to &#039;&#039;&#039;Enrolments&#039;&#039;&#039;&lt;br /&gt;
#Click &#039;&#039;&#039;Manage enrol plugins&#039;&#039;&#039;&lt;br /&gt;
#Click to open the &#039;eye&#039; icon of &#039;&#039;&#039;Paypal&#039;&#039;&#039;&lt;br /&gt;
#Click the &#039;&#039;&#039;Settings&#039;&#039;&#039; link to add your own Paypal details and preferences.&lt;br /&gt;
#Click &#039;&#039;&#039;Save changes&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Set up Paypal in your course==&lt;br /&gt;
#Log in with your administrator account account&lt;br /&gt;
#Go to the course you want to allow users to access&lt;br /&gt;
#From the left panel (Navigation drawer) click &#039;&#039;&#039;Participants&#039;&#039;&#039;&lt;br /&gt;
#Click the cog icon on the right [[File:cogicon.png]](above Enrol users) and select &#039;&#039;&#039;Enrolment methods&#039;&#039;&#039;&lt;br /&gt;
#From the &#039;&#039;&#039;Add method&#039;&#039;&#039; drop down, select &#039;&#039;&#039;Paypal&#039;&#039;&#039;&lt;br /&gt;
#Customise the settings if you wish&lt;br /&gt;
#Click the &#039;&#039;&#039;Add method&#039;&#039;&#039; button to save.&lt;br /&gt;
&lt;br /&gt;
==Helpful video==&lt;br /&gt;
{{MediaPlayer| url = https://youtu.be/vBfnNZDjR0c}}&lt;/div&gt;</summary>
		<author><name>Marycooch</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/37/en/index.php?title=Set_up_payment&amp;diff=135751</id>
		<title>Set up payment</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/37/en/index.php?title=Set_up_payment&amp;diff=135751"/>
		<updated>2019-10-22T10:27:52Z</updated>

		<summary type="html">&lt;p&gt;Marycooch: Protected &amp;quot;Set up payment&amp;quot;: Admin basics page (to be kept simple) ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite))&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;wip&lt;/div&gt;</summary>
		<author><name>Marycooch</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/37/en/index.php?title=Set_up_payment&amp;diff=135750</id>
		<title>Set up payment</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/37/en/index.php?title=Set_up_payment&amp;diff=135750"/>
		<updated>2019-10-22T10:27:40Z</updated>

		<summary type="html">&lt;p&gt;Marycooch: Created page with &amp;quot;wip&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;wip&lt;/div&gt;</summary>
		<author><name>Marycooch</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/37/en/index.php?title=Add_teachers_and_students&amp;diff=135749</id>
		<title>Add teachers and students</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/37/en/index.php?title=Add_teachers_and_students&amp;diff=135749"/>
		<updated>2019-10-22T10:26:36Z</updated>

		<summary type="html">&lt;p&gt;Marycooch: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Note | Before you can add teachers and students, they must first have an account on your Moodle site.}}&lt;br /&gt;
&lt;br /&gt;
#Teachers and students are given their &#039;&#039;&#039;roles within each course, not for the whole site&#039;&#039;&#039;.&lt;br /&gt;
#Log in with your administrator account.&lt;br /&gt;
#Go to the course where you  want to add teachers and students.&lt;br /&gt;
#From the left panel (Navigation drawer) click &#039;&#039;&#039;Participants&#039;&#039;&#039;&lt;br /&gt;
#Click &#039;&#039;&#039;Enrol users&#039;&#039;&#039;&lt;br /&gt;
#From the dropdowns, select the users you want and the role you want to give them:&lt;br /&gt;
&lt;br /&gt;
[[File:AdminBasicsME.png|Center]]&lt;br /&gt;
&lt;br /&gt;
6. Click &#039;&#039;&#039;Enrol users&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
==Helpful video==&lt;br /&gt;
&lt;br /&gt;
{{MediaPlayer | url = https://youtu.be/PdQjI9i9N5s}}&lt;/div&gt;</summary>
		<author><name>Marycooch</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/37/en/index.php?title=Add_teachers_and_students&amp;diff=135748</id>
		<title>Add teachers and students</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/37/en/index.php?title=Add_teachers_and_students&amp;diff=135748"/>
		<updated>2019-10-22T10:26:20Z</updated>

		<summary type="html">&lt;p&gt;Marycooch: wip&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Note | Before you can add teachers and students, they must first have an account on your Moodle site.}}&lt;br /&gt;
&lt;br /&gt;
#Teachers and students are given their roles within each course, not for the whole site.&lt;br /&gt;
#Log in with your administrator account.&lt;br /&gt;
#Go to the course where you  want to add teachers and students.&lt;br /&gt;
#From the left panel (Navigation drawer) click &#039;&#039;&#039;Participants&#039;&#039;&#039;&lt;br /&gt;
#Click &#039;&#039;&#039;Enrol users&#039;&#039;&#039;&lt;br /&gt;
#From the dropdowns, select the users you want and the role you want to give them:&lt;br /&gt;
&lt;br /&gt;
[[File:AdminBasicsME.png|Center]]&lt;br /&gt;
&lt;br /&gt;
6. Click &#039;&#039;&#039;Enrol users&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
==Helpful video==&lt;br /&gt;
&lt;br /&gt;
{{MediaPlayer | url = https://youtu.be/PdQjI9i9N5s}}&lt;/div&gt;</summary>
		<author><name>Marycooch</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/37/en/index.php?title=Groups_and_cohorts&amp;diff=135747</id>
		<title>Groups and cohorts</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/37/en/index.php?title=Groups_and_cohorts&amp;diff=135747"/>
		<updated>2019-10-22T10:18:41Z</updated>

		<summary type="html">&lt;p&gt;Marycooch: /* Adding a cohort to a course */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Groups in Moodle==&lt;br /&gt;
Course participants can be grouped together in Moodle in two ways:&lt;br /&gt;
* throughout the site or a course category, using a &#039;&#039;&#039;cohort&#039;&#039;&#039;. You can add and remove users from the cohort and they will automatically be added or removed from the courses with this cohort.&lt;br /&gt;
* within a course, using  a &#039;&#039;&#039;group&#039;&#039;&#039;. Students may be added to course groups so different teachers can share a course, or so they can work through different materials.&lt;br /&gt;
&lt;br /&gt;
==Create a cohort==&lt;br /&gt;
&lt;br /&gt;
The simplest way to create a cohort is to do it manually, although  you can also upload cohorts with a text file.&lt;br /&gt;
&lt;br /&gt;
1. Log in with your administrator account&lt;br /&gt;
&lt;br /&gt;
2. From the left panel (the Navigation drawer) click &#039;&#039;&#039;Site administration&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
3. Click the &#039;&#039;&#039;Users&#039;&#039;&#039; tab&lt;br /&gt;
&lt;br /&gt;
4. Click &#039;&#039;&#039;Cohorts&#039;&#039;&#039; and then &#039;&#039;&#039;Add a new cohort&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
5. Give your cohort a name meaningful to you.&lt;br /&gt;
&lt;br /&gt;
6. In Context, you can make the cohort available site wide or within one category.&lt;br /&gt;
&lt;br /&gt;
7. Click &#039;&#039;&#039;Save changes&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
8. On the next screen, click the people icon to add users to the cohort:&lt;br /&gt;
&lt;br /&gt;
[[File:cohortadminbasics.png|center]]&lt;br /&gt;
&lt;br /&gt;
== Adding a cohort to a course==&lt;br /&gt;
&lt;br /&gt;
# Log in with your administrator account or a teacher account&lt;br /&gt;
# Go to the course you want to allow users to access&lt;br /&gt;
# From the left panel (Navigation drawer) click &#039;&#039;&#039;Participants&#039;&#039;&#039;&lt;br /&gt;
# Click the cog icon on the right [[File:cogicon.png]] (above Enrol users) and select &#039;&#039;&#039;Enrolment methods&#039;&#039;&#039;&lt;br /&gt;
# From the Add method drop down, choose &#039;&#039;&#039;Cohort sync&#039;&#039;&#039;&lt;br /&gt;
#On the next screen, select the cohort you made and click &#039;&#039;&#039;Add method&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Create a group==&lt;br /&gt;
# Log in with your administrator account or a teacher account&lt;br /&gt;
# Go to the course you want to allow users to access&lt;br /&gt;
# From the left panel (Navigation drawer) click &#039;&#039;&#039;Participants&#039;&#039;&#039;&lt;br /&gt;
# Click the cog icon on the right [[File:cogicon.png]] (above Enrol users) and select &#039;&#039;&#039;Enrolment methods&#039;&#039;&#039;&lt;br /&gt;
#Click &#039;&#039;&#039;Groups&#039;&#039;&#039;&lt;br /&gt;
#Click &#039;&#039;&#039;Create group&#039;&#039;&#039;&lt;br /&gt;
#Give your group a name; add any other details you want and click &#039;&#039;&#039;Save changes&#039;&#039;&#039;&lt;br /&gt;
#On the next screen, select users from the box on the right and move them into the box on the left to add them to the group.&lt;br /&gt;
&lt;br /&gt;
{{Note|No students in your course yet? Look at &#039;&#039;&#039;[[Add new users]].&#039;&#039;&#039;}}&lt;br /&gt;
&lt;br /&gt;
==Helpful videos==&lt;br /&gt;
How can I add groups to my Moodle?&lt;br /&gt;
&lt;br /&gt;
{{MediaPlayer | url = https://youtu.be/ok27wqDAsEk}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
How can I add groups to my courses?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{MediaPlayer | url = https://youtu.be/Gaq1M9-ETtQ}}&lt;/div&gt;</summary>
		<author><name>Marycooch</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/37/en/index.php?title=Groups_and_cohorts&amp;diff=135746</id>
		<title>Groups and cohorts</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/37/en/index.php?title=Groups_and_cohorts&amp;diff=135746"/>
		<updated>2019-10-22T10:18:20Z</updated>

		<summary type="html">&lt;p&gt;Marycooch: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Groups in Moodle==&lt;br /&gt;
Course participants can be grouped together in Moodle in two ways:&lt;br /&gt;
* throughout the site or a course category, using a &#039;&#039;&#039;cohort&#039;&#039;&#039;. You can add and remove users from the cohort and they will automatically be added or removed from the courses with this cohort.&lt;br /&gt;
* within a course, using  a &#039;&#039;&#039;group&#039;&#039;&#039;. Students may be added to course groups so different teachers can share a course, or so they can work through different materials.&lt;br /&gt;
&lt;br /&gt;
==Create a cohort==&lt;br /&gt;
&lt;br /&gt;
The simplest way to create a cohort is to do it manually, although  you can also upload cohorts with a text file.&lt;br /&gt;
&lt;br /&gt;
1. Log in with your administrator account&lt;br /&gt;
&lt;br /&gt;
2. From the left panel (the Navigation drawer) click &#039;&#039;&#039;Site administration&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
3. Click the &#039;&#039;&#039;Users&#039;&#039;&#039; tab&lt;br /&gt;
&lt;br /&gt;
4. Click &#039;&#039;&#039;Cohorts&#039;&#039;&#039; and then &#039;&#039;&#039;Add a new cohort&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
5. Give your cohort a name meaningful to you.&lt;br /&gt;
&lt;br /&gt;
6. In Context, you can make the cohort available site wide or within one category.&lt;br /&gt;
&lt;br /&gt;
7. Click &#039;&#039;&#039;Save changes&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
8. On the next screen, click the people icon to add users to the cohort:&lt;br /&gt;
&lt;br /&gt;
[[File:cohortadminbasics.png|center]]&lt;br /&gt;
&lt;br /&gt;
== Adding a cohort to a course==&lt;br /&gt;
&lt;br /&gt;
# Log in with your administrator account or a teacher account&lt;br /&gt;
# Go to the course you want to allow users to access&lt;br /&gt;
# From the left panel (Navigation drawer) click Participants&lt;br /&gt;
# Click the cog icon on the right [[File:cogicon.png]] (above Enrol users) and select Enrolment methods&lt;br /&gt;
# From the Add method drop down, choose &#039;&#039;&#039;Cohort sync&#039;&#039;&#039;&lt;br /&gt;
#On the next screen, select the cohort you made and click &#039;&#039;&#039;Add method&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Create a group==&lt;br /&gt;
# Log in with your administrator account or a teacher account&lt;br /&gt;
# Go to the course you want to allow users to access&lt;br /&gt;
# From the left panel (Navigation drawer) click &#039;&#039;&#039;Participants&#039;&#039;&#039;&lt;br /&gt;
# Click the cog icon on the right [[File:cogicon.png]] (above Enrol users) and select &#039;&#039;&#039;Enrolment methods&#039;&#039;&#039;&lt;br /&gt;
#Click &#039;&#039;&#039;Groups&#039;&#039;&#039;&lt;br /&gt;
#Click &#039;&#039;&#039;Create group&#039;&#039;&#039;&lt;br /&gt;
#Give your group a name; add any other details you want and click &#039;&#039;&#039;Save changes&#039;&#039;&#039;&lt;br /&gt;
#On the next screen, select users from the box on the right and move them into the box on the left to add them to the group.&lt;br /&gt;
&lt;br /&gt;
{{Note|No students in your course yet? Look at &#039;&#039;&#039;[[Add new users]].&#039;&#039;&#039;}}&lt;br /&gt;
&lt;br /&gt;
==Helpful videos==&lt;br /&gt;
How can I add groups to my Moodle?&lt;br /&gt;
&lt;br /&gt;
{{MediaPlayer | url = https://youtu.be/ok27wqDAsEk}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
How can I add groups to my courses?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{MediaPlayer | url = https://youtu.be/Gaq1M9-ETtQ}}&lt;/div&gt;</summary>
		<author><name>Marycooch</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/37/en/index.php?title=Groups_and_cohorts&amp;diff=135745</id>
		<title>Groups and cohorts</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/37/en/index.php?title=Groups_and_cohorts&amp;diff=135745"/>
		<updated>2019-10-22T10:17:39Z</updated>

		<summary type="html">&lt;p&gt;Marycooch: /* Create a group */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Course participants can be grouped together in Moodle in two ways:&lt;br /&gt;
* throughout the site or a course category, using a &#039;&#039;&#039;cohort&#039;&#039;&#039;. You can add and remove users from the cohort and they will automatically be added or removed from the courses with this cohort.&lt;br /&gt;
* within a course, using  a &#039;&#039;&#039;group&#039;&#039;&#039;. Students may be added to course groups so different teachers can share a course, or so they can work through different materials.&lt;br /&gt;
&lt;br /&gt;
==Create a cohort==&lt;br /&gt;
&lt;br /&gt;
The simplest way to create a cohort is to do it manually, although  you can also upload cohorts with a text file.&lt;br /&gt;
&lt;br /&gt;
1. Log in with your administrator account&lt;br /&gt;
&lt;br /&gt;
2. From the left panel (the Navigation drawer) click &#039;&#039;&#039;Site administration&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
3. Click the &#039;&#039;&#039;Users&#039;&#039;&#039; tab&lt;br /&gt;
&lt;br /&gt;
4. Click &#039;&#039;&#039;Cohorts&#039;&#039;&#039; and then &#039;&#039;&#039;Add a new cohort&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
5. Give your cohort a name meaningful to you.&lt;br /&gt;
&lt;br /&gt;
6. In Context, you can make the cohort available site wide or within one category.&lt;br /&gt;
&lt;br /&gt;
7. Click &#039;&#039;&#039;Save changes&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
8. On the next screen, click the people icon to add users to the cohort:&lt;br /&gt;
&lt;br /&gt;
[[File:cohortadminbasics.png|center]]&lt;br /&gt;
&lt;br /&gt;
== Adding a cohort to a course==&lt;br /&gt;
&lt;br /&gt;
# Log in with your administrator account or a teacher account&lt;br /&gt;
# Go to the course you want to allow users to access&lt;br /&gt;
# From the left panel (Navigation drawer) click Participants&lt;br /&gt;
# Click the cog icon on the right [[File:cogicon.png]] (above Enrol users) and select Enrolment methods&lt;br /&gt;
# From the Add method drop down, choose &#039;&#039;&#039;Cohort sync&#039;&#039;&#039;&lt;br /&gt;
#On the next screen, select the cohort you made and click &#039;&#039;&#039;Add method&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Create a group==&lt;br /&gt;
# Log in with your administrator account or a teacher account&lt;br /&gt;
# Go to the course you want to allow users to access&lt;br /&gt;
# From the left panel (Navigation drawer) click &#039;&#039;&#039;Participants&#039;&#039;&#039;&lt;br /&gt;
# Click the cog icon on the right [[File:cogicon.png]] (above Enrol users) and select &#039;&#039;&#039;Enrolment methods&#039;&#039;&#039;&lt;br /&gt;
#Click &#039;&#039;&#039;Groups&#039;&#039;&#039;&lt;br /&gt;
#Click &#039;&#039;&#039;Create group&#039;&#039;&#039;&lt;br /&gt;
#Give your group a name; add any other details you want and click &#039;&#039;&#039;Save changes&#039;&#039;&#039;&lt;br /&gt;
#On the next screen, select users from the box on the right and move them into the box on the left to add them to the group.&lt;br /&gt;
&lt;br /&gt;
{{Note|No students in your course yet? Look at &#039;&#039;&#039;[[Add new users]].&#039;&#039;&#039;}}&lt;br /&gt;
&lt;br /&gt;
==Helpful videos==&lt;br /&gt;
How can I add groups to my Moodle?&lt;br /&gt;
&lt;br /&gt;
{{MediaPlayer | url = https://youtu.be/ok27wqDAsEk}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
How can I add groups to my courses?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{MediaPlayer | url = https://youtu.be/Gaq1M9-ETtQ}}&lt;/div&gt;</summary>
		<author><name>Marycooch</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/37/en/index.php?title=Groups_and_cohorts&amp;diff=135744</id>
		<title>Groups and cohorts</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/37/en/index.php?title=Groups_and_cohorts&amp;diff=135744"/>
		<updated>2019-10-22T09:21:37Z</updated>

		<summary type="html">&lt;p&gt;Marycooch: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Course participants can be grouped together in Moodle in two ways:&lt;br /&gt;
* throughout the site or a course category, using a &#039;&#039;&#039;cohort&#039;&#039;&#039;. You can add and remove users from the cohort and they will automatically be added or removed from the courses with this cohort.&lt;br /&gt;
* within a course, using  a &#039;&#039;&#039;group&#039;&#039;&#039;. Students may be added to course groups so different teachers can share a course, or so they can work through different materials.&lt;br /&gt;
&lt;br /&gt;
==Create a cohort==&lt;br /&gt;
&lt;br /&gt;
The simplest way to create a cohort is to do it manually, although  you can also upload cohorts with a text file.&lt;br /&gt;
&lt;br /&gt;
1. Log in with your administrator account&lt;br /&gt;
&lt;br /&gt;
2. From the left panel (the Navigation drawer) click &#039;&#039;&#039;Site administration&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
3. Click the &#039;&#039;&#039;Users&#039;&#039;&#039; tab&lt;br /&gt;
&lt;br /&gt;
4. Click &#039;&#039;&#039;Cohorts&#039;&#039;&#039; and then &#039;&#039;&#039;Add a new cohort&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
5. Give your cohort a name meaningful to you.&lt;br /&gt;
&lt;br /&gt;
6. In Context, you can make the cohort available site wide or within one category.&lt;br /&gt;
&lt;br /&gt;
7. Click &#039;&#039;&#039;Save changes&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
8. On the next screen, click the people icon to add users to the cohort:&lt;br /&gt;
&lt;br /&gt;
[[File:cohortadminbasics.png|center]]&lt;br /&gt;
&lt;br /&gt;
== Adding a cohort to a course==&lt;br /&gt;
&lt;br /&gt;
# Log in with your administrator account or a teacher account&lt;br /&gt;
# Go to the course you want to allow users to access&lt;br /&gt;
# From the left panel (Navigation drawer) click Participants&lt;br /&gt;
# Click the cog icon on the right [[File:cogicon.png]] (above Enrol users) and select Enrolment methods&lt;br /&gt;
# From the Add method drop down, choose &#039;&#039;&#039;Cohort sync&#039;&#039;&#039;&lt;br /&gt;
#On the next screen, select the cohort you made and click &#039;&#039;&#039;Add method&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Create a group==&lt;/div&gt;</summary>
		<author><name>Marycooch</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/37/en/index.php?title=Groups_and_cohorts&amp;diff=135743</id>
		<title>Groups and cohorts</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/37/en/index.php?title=Groups_and_cohorts&amp;diff=135743"/>
		<updated>2019-10-22T09:21:21Z</updated>

		<summary type="html">&lt;p&gt;Marycooch: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Course participants can be grouped together in Moodle in two ways:&lt;br /&gt;
* throughout the site or a course category, using a &#039;&#039;&#039;Cohort&#039;&#039;&#039;. You can add and remove users from the cohort and they will automatically be added or removed from the courses with this cohort.&lt;br /&gt;
* within a course, using  a &#039;&#039;&#039;group&#039;&#039;&#039;. Students may be added to course groups so different teachers can share a course, or so they can work through different materials.&lt;br /&gt;
&lt;br /&gt;
==Create a cohort==&lt;br /&gt;
&lt;br /&gt;
The simplest way to create a cohort is to do it manually, although  you can also upload cohorts with a text file.&lt;br /&gt;
&lt;br /&gt;
1. Log in with your administrator account&lt;br /&gt;
&lt;br /&gt;
2. From the left panel (the Navigation drawer) click &#039;&#039;&#039;Site administration&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
3. Click the &#039;&#039;&#039;Users&#039;&#039;&#039; tab&lt;br /&gt;
&lt;br /&gt;
4. Click &#039;&#039;&#039;Cohorts&#039;&#039;&#039; and then &#039;&#039;&#039;Add a new cohort&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
5. Give your cohort a name meaningful to you.&lt;br /&gt;
&lt;br /&gt;
6. In Context, you can make the cohort available site wide or within one category.&lt;br /&gt;
&lt;br /&gt;
7. Click &#039;&#039;&#039;Save changes&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
8. On the next screen, click the people icon to add users to the cohort:&lt;br /&gt;
&lt;br /&gt;
[[File:cohortadminbasics.png|center]]&lt;br /&gt;
&lt;br /&gt;
== Adding a cohort to a course==&lt;br /&gt;
&lt;br /&gt;
# Log in with your administrator account or a teacher account&lt;br /&gt;
# Go to the course you want to allow users to access&lt;br /&gt;
# From the left panel (Navigation drawer) click Participants&lt;br /&gt;
# Click the cog icon on the right [[File:cogicon.png]] (above Enrol users) and select Enrolment methods&lt;br /&gt;
# From the Add method drop down, choose &#039;&#039;&#039;Cohort sync&#039;&#039;&#039;&lt;br /&gt;
#On the next screen, select the cohort you made and click &#039;&#039;&#039;Add method&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Create a group==&lt;/div&gt;</summary>
		<author><name>Marycooch</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/37/en/index.php?title=Groups_and_cohorts&amp;diff=135742</id>
		<title>Groups and cohorts</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/37/en/index.php?title=Groups_and_cohorts&amp;diff=135742"/>
		<updated>2019-10-22T09:19:09Z</updated>

		<summary type="html">&lt;p&gt;Marycooch: /* Adding a cohort to a course */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Course participants can be grouped together in Moodle in two ways:&lt;br /&gt;
* throughout the site or a course category, using a &#039;&#039;&#039;Cohort&#039;&#039;&#039;&lt;br /&gt;
* within a course, using  a &#039;&#039;&#039;group&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Create a cohort==&lt;br /&gt;
&lt;br /&gt;
The simplest way to create a cohort is to do it manually, although  you can also upload cohorts with a text file.&lt;br /&gt;
&lt;br /&gt;
1. Log in with your administrator account&lt;br /&gt;
&lt;br /&gt;
2. From the left panel (the Navigation drawer) click &#039;&#039;&#039;Site administration&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
3. Click the &#039;&#039;&#039;Users&#039;&#039;&#039; tab&lt;br /&gt;
&lt;br /&gt;
4. Click &#039;&#039;&#039;Cohorts&#039;&#039;&#039; and then &#039;&#039;&#039;Add a new cohort&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
5. Give your cohort a name meaningful to you.&lt;br /&gt;
&lt;br /&gt;
6. In Context, you can make the cohort available site wide or within one category.&lt;br /&gt;
&lt;br /&gt;
7. Click &#039;&#039;&#039;Save changes&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
8. On the next screen, click the people icon to add users to the cohort:&lt;br /&gt;
&lt;br /&gt;
[[File:cohortadminbasics.png|center]]&lt;br /&gt;
&lt;br /&gt;
== Adding a cohort to a course==&lt;br /&gt;
&lt;br /&gt;
# Log in with your administrator account or a teacher account&lt;br /&gt;
# Go to the course you want to allow users to access&lt;br /&gt;
# From the left panel (Navigation drawer) click Participants&lt;br /&gt;
# Click the cog icon on the right [[File:cogicon.png]] (above Enrol users) and select Enrolment methods&lt;br /&gt;
# From the Add method drop down, choose &#039;&#039;&#039;Cohort sync&#039;&#039;&#039;&lt;br /&gt;
#On the next screen, select the cohort you made and click &#039;&#039;&#039;Add method&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Create a group==&lt;/div&gt;</summary>
		<author><name>Marycooch</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/37/en/index.php?title=Groups_and_cohorts&amp;diff=135741</id>
		<title>Groups and cohorts</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/37/en/index.php?title=Groups_and_cohorts&amp;diff=135741"/>
		<updated>2019-10-22T09:13:10Z</updated>

		<summary type="html">&lt;p&gt;Marycooch: Created page with &amp;quot;Course participants can be grouped together in Moodle in two ways: * throughout the site or a course category, using a &amp;#039;&amp;#039;&amp;#039;Cohort&amp;#039;&amp;#039;&amp;#039; * within a course, using  a &amp;#039;&amp;#039;&amp;#039;group&amp;#039;&amp;#039;&amp;#039;  ==...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Course participants can be grouped together in Moodle in two ways:&lt;br /&gt;
* throughout the site or a course category, using a &#039;&#039;&#039;Cohort&#039;&#039;&#039;&lt;br /&gt;
* within a course, using  a &#039;&#039;&#039;group&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Create a cohort==&lt;br /&gt;
&lt;br /&gt;
The simplest way to create a cohort is to do it manually, although  you can also upload cohorts with a text file.&lt;br /&gt;
&lt;br /&gt;
1. Log in with your administrator account&lt;br /&gt;
&lt;br /&gt;
2. From the left panel (the Navigation drawer) click &#039;&#039;&#039;Site administration&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
3. Click the &#039;&#039;&#039;Users&#039;&#039;&#039; tab&lt;br /&gt;
&lt;br /&gt;
4. Click &#039;&#039;&#039;Cohorts&#039;&#039;&#039; and then &#039;&#039;&#039;Add a new cohort&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
5. Give your cohort a name meaningful to you.&lt;br /&gt;
&lt;br /&gt;
6. In Context, you can make the cohort available site wide or within one category.&lt;br /&gt;
&lt;br /&gt;
7. Click &#039;&#039;&#039;Save changes&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
8. On the next screen, click the people icon to add users to the cohort:&lt;br /&gt;
&lt;br /&gt;
[[File:cohortadminbasics.png|center]]&lt;br /&gt;
&lt;br /&gt;
== Adding a cohort to a course==&lt;/div&gt;</summary>
		<author><name>Marycooch</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/37/en/index.php?title=File:cohortadminbasics.png&amp;diff=135740</id>
		<title>File:cohortadminbasics.png</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/37/en/index.php?title=File:cohortadminbasics.png&amp;diff=135740"/>
		<updated>2019-10-22T09:10:05Z</updated>

		<summary type="html">&lt;p&gt;Marycooch: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Marycooch</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/37/en/index.php?title=Lesson_dependency&amp;diff=135739</id>
		<title>Lesson dependency</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/37/en/index.php?title=Lesson_dependency&amp;diff=135739"/>
		<updated>2019-10-21T06:10:32Z</updated>

		<summary type="html">&lt;p&gt;Marycooch: Redirected page to Lesson settings&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#Redirect [[Lesson settings]]&lt;/div&gt;</summary>
		<author><name>Marycooch</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/37/en/index.php?title=Talk:Lesson_dependency&amp;diff=135738</id>
		<title>Talk:Lesson dependency</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/37/en/index.php?title=Talk:Lesson_dependency&amp;diff=135738"/>
		<updated>2019-10-21T06:09:51Z</updated>

		<summary type="html">&lt;p&gt;Marycooch: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I think this page is obsolete in a Moodle &amp;gt; 2.0 manual.&lt;br /&gt;
&lt;br /&gt;
[[User:Luca Bösch|Luca Bösch]] ([[User talk:Luca Bösch|talk]]) 19:19, 20 October 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
Yes - could either be redirected (which I will do) or even deleted\--[[User:Mary Cooch|Mary Cooch]] ([[User talk:Mary Cooch|talk]]) 06:09, 21 October 2019 (UTC)&lt;/div&gt;</summary>
		<author><name>Marycooch</name></author>
	</entry>
</feed>