Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Reformat render_to_response calls | Elrond | 2011-06-05 | 1 | -5/+4 | |
| | | | | | Just a simple indentation and ordering change, no functional change. | |||||
* | Create render_to_reponse and use it everywhere. | Elrond | 2011-06-05 | 1 | -5/+4 | |
| | | | | Just a shortcut for Response(render_template(...)) | |||||
* | Moving all views over to using util.render_template()! | Christopher Allan Webber | 2011-06-04 | 1 | -5/+4 | |
| | ||||||
* | Let's redirect back to the media homepage using the slug instead of the id | Christopher Allan Webber | 2011-06-04 | 1 | -1/+1 | |
| | ||||||
* | I shouldn't have removed the .save() entirely :) | Christopher Allan Webber | 2011-06-04 | 1 | -0/+1 | |
| | ||||||
* | Find out if such a slug exists via a query instead of via a .save() call | Christopher Allan Webber | 2011-06-03 | 1 | -12/+19 | |
| | ||||||
* | Add GNU headers to new *.py | Elrond | 2011-06-02 | 1 | -0/+15 | |
| | ||||||
* | Handle Exceptions from save(); Move may_edit_media | Elrond | 2011-06-02 | 1 | -10/+5 | |
| | | | | | | | | Turn .save() excpetions into a HTTPConflict. Not nice, but at least the user gets the error. Until there is a proper way to validate things and get nice errors. Move may_edit_media() to lib.py, as it's not a view. | |||||
* | Prepare for moving /edit/ under /u/.../edit/ | Elrond | 2011-06-02 | 1 | -2/+2 | |
| | | | | | To make moving the whole thing under /u/ easier, prepare to pass in the {user} needed for that. | |||||
* | Check for edit permission. | Elrond | 2011-06-02 | 1 | -0/+13 | |
| | | | | | You need to own the media, or be an admin to use the edit form. As simple as that, for now. | |||||
* | "edit": Finally implement saving. | Elrond | 2011-05-27 | 1 | -1/+12 | |
| | | | | | | Currently no checks. Probably not so good. And especially, every logged in user currently can edit the data for any other user's media. | |||||
* | Starting "edit" functionality. | Elrond | 2011-05-26 | 1 | -0/+23 | |
This adds a link to the "edit" form, the form, the view for displaying the form and that's about it. |