Rachel Green
Rachel Green
In the new article form, for the state drop-down, change the label to say "Select a state/province," and above the drop-down mark the title of the field as "State/Province" and...
To automatically redirect older case URLs after the case title is updated, add the following if statement to the `show` method in the `articles` controller: ``` # If an old...
Note: This issue is 5 of 9 that need to be completed in a particular order for a feature. Each issue should be closed and the corresponding PR merged before...
Create a new directory called app/null_objects and a new file `app/null_objects/case.rb`. Create a new class, `NullObjects::Case` that has the following initializer: ``` def initialize Case.none end ``` Edit: previously, this...
Create a new template in `app/views/cases` titled `case_not_found`. This page should say: "Sorry, we were unable to find a case for #{params[:id]}. Want to add a new case? Click here"...
On staging, create a case with all of the fields completed using lorem ipsum text and a stock image. Verify that if, the case is then deleted in the admin...
Add a delete button to the case show view that, when, clicked, will trigger the `destroy` action in the cases controller. This button should only be visible to admins, and...
Rearrange the case form to have the fields in this order: - Title - Date - Name - Age - Gender - Ethnicity - Unarmed - Mentally Ill - Homeless...
When a search query leads to a "No results found" page, it would be good to provide a suggestion of things the user can do in response. What the user...
Update the cloudflare-rails gem to the latest version.