First of all, thank you for this excellent module and the screencast. Very helpful! I ran into an issue that I don't know how to fix.
When I try to submit an assignment (logged in as a user assigned a student role), I do get a "Page" content type but there's no title to fill out. Therefore I can't submit the assignment. Any thoughts or ideas how to fix this?

Thank you!

CommentFileSizeAuthor
temp.jpg67.48 KBvasheck
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

vasheck’s picture

It's bizarre... I checked the source code and the code for the node title is there but is not getting displayed.
I checked my css and there's no apparent reason why the title shouldn't be visible.

<div class="form-item" id="edit-title-wrapper"> 
 <label for="edit-title">Title: <span class="form-required" title="This field is required.">*</span></label> 
 <input type="text" maxlength="255" name="title" id="edit-title" size="60" value="" class="form-text required" /> 
</div> 

I'll keep investigating and post any results if I get to the bottom of this.

vasheck’s picture

hmmm... turns out it was a css issue:

rubric_hide.css?x (line 4)
#edit-title-wrapper {
display:block;
}

title-wrapper {
display:block;
}

btopro’s picture

Project: Rubric » Assignment Studio
Component: Code » Documentation

This is actually something in the assignment studio I believe. Titles are automatically generated for simplicity sake, you should be able to override that functionality given the method you mentioned above.

btopro’s picture

Status: Active » Closed (fixed)