How can i enable or disable actions according to the value of a field.For example In my model I have a status field which can have either of the value 'activate','pending','expired'.I am making a action which set the status equals to 'activate'.Know I want the action to be enable only if status is 'pending'.
|
|
|||||
|
|
|
This is some combination of the Strategy and State design patterns. You'll be defining method functions for the action, and you'll want that method function to be sensitive to the state of your model instance. Here's what we do.
This way, we can add new states (and state transition rules) freely without disturbing the model class too much. |
||||||
|
|
|
Admin action methods provide you a queryset. Just slap an exclude or filter for pending |
||
|
|
|
|
i think using queryset is good approach |
||
|
