Exemplo n.º 1
0
    def edit(self, id):
        c.special_offer = SpecialOffer.find_by_id(id)

        defaults = h.object_to_defaults(c.special_offer, 'special_offer')

        form = render('/special_offer/edit.mako')
        return htmlfill.render(form, defaults)
Exemplo n.º 2
0
    def edit(self, id):
        c.special_offer = SpecialOffer.find_by_id(id)

        defaults = h.object_to_defaults(c.special_offer, 'special_offer')

        form = render('/special_offer/edit.mako')
        return htmlfill.render(form, defaults)
Exemplo n.º 3
0
    def _delete(self, id):
        c.special_offer = SpecialOffer.find_by_id(id)
        meta.Session.delete(c.special_offer)
        meta.Session.commit()

        h.flash("Special Offer has been deleted.")
        redirect_to('index')
Exemplo n.º 4
0
    def _delete(self, id):
        c.special_offer = SpecialOffer.find_by_id(id)
        meta.Session.delete(c.special_offer)
        meta.Session.commit()

        h.flash("Special Offer has been deleted.")
        redirect_to('index')
Exemplo n.º 5
0
    def delete(self, id):
        """Delete the special_offer

        GET will return a form asking for approval.

        POST requests will delete the item.
        """
        c.special_offer = SpecialOffer.find_by_id(id)
        return render('/special_offer/confirm_delete.mako')
Exemplo n.º 6
0
    def delete(self, id):
        """Delete the special_offer

        GET will return a form asking for approval.

        POST requests will delete the item.
        """
        c.special_offer = SpecialOffer.find_by_id(id)
        return render('/special_offer/confirm_delete.mako')
Exemplo n.º 7
0
    def _edit(self, id):
        special_offer = SpecialOffer.find_by_id(id)

        for key in self.form_result['special_offer']:
            setattr(special_offer, key, self.form_result['special_offer'][key])

        # update the objects with the validated form data
        meta.Session.commit()
        h.flash("The special_offer has been updated successfully.")
        redirect_to(action='view', id=id)
Exemplo n.º 8
0
    def _edit(self, id):
        special_offer = SpecialOffer.find_by_id(id)

        for key in self.form_result['special_offer']:
            setattr(special_offer, key, self.form_result['special_offer'][key])

        # update the objects with the validated form data
        meta.Session.commit()
        h.flash("The special_offer has been updated successfully.")
        redirect_to(action='view', id=id)
Exemplo n.º 9
0
 def view(self, id):
     c.special_offer = SpecialOffer.find_by_id(id)
     c.registrations = SpecialRegistration.find_by_offer(id)
     return render('/special_offer/view.mako')
Exemplo n.º 10
0
 def view(self, id):
     c.special_offer = SpecialOffer.find_by_id(id)
     c.registrations = SpecialRegistration.find_by_offer(id)
     return render('/special_offer/view.mako')