You can see the rest of the moodle training vids here:
http://video.google.com/videosearch?q=moodle
Hope it helps someone out there!
As well, could someone verify if this is a true bug?
http://moodle.org/bugs/bug.php?op=show&bugid=5718&pos=0
thanks
Dennis
I'm assuming you mean a list view that has each entry as a seperate row in a table.
For the list view you have three areas for templates
- header
- repeated entry
- footer
You need to create the table and the header row in the first area, then the repeated table row, then close the table like this:
header
<table class="generaltable" width="80%">
<tr>
<th>test</th>
<th>testing</th>
<th>tester</th>
<th>actions</th>
</tr>
repeated entry
<tr>
<td>test</td>
<td>testing</td>
<td>tester</td>
<td>##Edit## ##More## ##moreurl## ##Delete## ##Approve## ##user## ##comments## </td>
</tr>
footer
</table>
Depending on your theme you may need to add an appropriate class="something"
to your table tag in the HTML and possibly add relevant CSS to your theme files.
I'd guess you've added new fields after the intial creation of the database. Try looking at the add entry template, hitting the reset template button and then saving. It should create something simple but effective, and for the entry screen at least you'll rarely want to do anything more complicated than what the default provides.