Custom Query (1173 matches)
Results (133 - 135 of 1173)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#470 | fixed | Add more information to mediagoblin.ini | ||
Description |
Changes to mediagoblin_local.ini often require running “./bin/gmg/dbupdate” or installing some dependencies. That should be mentioned in the comments in the file. For instance,
|
|||
#474 | fixed | Change password is on the same page as the rest of the account settings | ||
Description |
On the "Changing account settings" page, there is a form to change your password. This is mixed in with other, less invasive, account options such as comment notifications. I think they should be separated and the page should have a link saying "Change account password", which links to a new page containing the form to change your password. |
|||
#475 | fixed | Checkbox for email notifications sits above its label | ||
Description |
On the "Changing account settings" page, the checkbox for email comment notifications looks like this: [✓] Email me when others comment on my media It should look like this: [✓] Email me when others comment on my media And clicking the label should check or uncheck the checkbox. To do this, the HTML should be changed from the current: <input type="checkbox"> <p>Email me when others comment on my media</p> To this: <label><input type="checkbox">Email me when others comment on my media</label> But I have no idea how to do this, because it's generated by WTForms. |