Ygam Retuta

Results 3 issues of Ygam Retuta

doc says use CloudinaryJsFileField, and some instructions to set it up with a frontend template and a view. How do I do it with the django admin?

question

is there any way to add a text portion to the reviews? or is it already built-in?

given: ``` # app/models/user.rb def send_daily_request self.team_members.each do |member| if member.email != self.email mail = UserMailer.daily_request(self, member) #mail.mailgun_special_variables = {deliverytime:Util.send_question_time(self.timezone, self.daily_update_time)} mail.deliver_now response = mail.mailgun_api_response if response.present? save_outgoing(member, response["id"]) true...