Повідомлення, що надісла(ла)в Itamar Tzadok

All that is possible. I've been thinking about combining the email auth and approval auth into one. Whitelist should be fairly easy to add. усміхаюсь

Yes, with most of the fields in the dataform you can add to the view template a tag [[*fieldname] ] to make the field required when adding/editing an entry. The plan is to get the dataform over beta by the end of august (unit tests are already working but we need more).

You can also use javascript but this is not foolproof as the user can turn the javascript off. If you use javascript you can set the template to hide or disable the input fields by css and let the javascript enable them. This way turning off the javascript would prevent entering the form. That would still not be foolproof but it may be enough for your purpose.

усміхаюсь

Moodle in English -> Glossary -> Personal Glossary -> Re: Personal Glossary

Itamar Tzadok -

The css should look something like the following

@media print {
 
html, body {
margin: 0;
padding: 0;
width: 100%;
}
 
body {
background-color: White;
color: Black;
font-size: 75%;
}
 
div.tabtree, div#page-header, div.navbar,
div.headermenu, div.paging, div#page-footer,
div.datapreferences {
display: none;
}
 
table {
text-align: left;
}
}


You need to check the actual selectors in the designated page as they may differ between themes. усміхаюсь