Changes between Version 25 and Version 26 of AjaxDjangoDojoForm


Ignore:
Timestamp:
Jun 6, 2006, 7:27:27 PM (18 years ago)
Author:
coulix
Comment:

spelling

Legend:

Unmodified
Added
Removed
Modified
  • AjaxDjangoDojoForm

    v25 v26  
    2929== What do we want to achieve ==
    3030I will use the model of my current website, a recipe one.
    31 When a registered user sees the details of a recipe, the user can rate (mark) it or update their rating (mark) by selecting a small drop down list.
    32 But when the user clicks ok the whole page reloads. We will use some Ajax to make it transparent and for fancy effect
     31When a registered user sees the details of a recipe, the user can rate (mark) it or update their rating (mark) by selecting the mark with a small drop down list.
     32But when the user clicks ok the whole page reloads. We will use some Ajax to make it transparent and fancy effect to show the change to the user.
    3333we can add a fading status message like "Your rating has been updated".
    3434The select box proposes a rating from 1 to 5, it is actually a form which is sent to the server via POST, which in django links to a method
     
    297297
    298298
    299 
    300 Any troubles : coulix@gmail.com
    301 
     299'''Note'''  I might be doing it completely wrong.
     300More questions / complaints: coulix@gmail.com
     301
Back to Top