If / Else in Google Docs Forms - if-statement

I´m actually trying to create a new survey and wonder if there is a possibility to add something like IF/Else.
So, if the user push the Radio-Button "no" it pops up a new field with something like "why you don´t push yes". But the field is only shown, when you pushed no in the question before.
I would be gratefull about some answers.
greetz jmoe

You can make use of "Go to page based on answer":
In Page 2 you would make a paragraph field:
Here's the form in action

Related

Repeating forms in django form wizard

I've created a form wizard in django which starts with a form which the user can enter their details (name, age etc.) into.
The wizard then goes on to some other forms I need.
Now I want to expand the wizard so that the user can add as many other user details as they like.
So basically, it needs to be something like:-
User details -> Do you want to add more?
If yes -> User details
If no -> Next form
I also need the user to be able to edit previous user details or remove previous user details entirely.
I've tried adding a load of conditional forms for the user details, which are switched on or off, depending on whether the user replied Yes to the "add more" question. However, all of the user details form fields have the same name so they overwrite each other. Also, this seems like a hack to me.
So what's the "proper" way to do this? Put simply, how do I conditionally repeat forms based on user input as the wizard progresses?
Then you can use django formsets https://docs.djangoproject.com/en/1.9/topics/forms/formsets/ that way the user can add as many as they like.. However I am not sure how that works with the Wizard thought because of the management form.. You can try it and return feedback :)

Ember.js trouble with select and radiobutton bindings example

I'm new with Ember and have a big troubles with basics. Can you answer on two questions:
There are two users, next to the name of each there is a link "Edit" which opens an edit form. In the form there are text inputs and SELECT with the names of cities. If I choose to edit the item in the entire form perfectly substituted data and shows the current city in SELECT. But when I then click on the editing of another item SELECT remains with the previous city(
I think this is something about bindings. This is my jsbin http://jsbin.com/bidoma/8/
How did add/edit form with radio buttons? Do you have working jsbin examples?
Waiting for an answer :)
UPD: Comment to first question. The question is how to update the selection when the edited object has been changed?
This was easy. To get object instead of promise needed write content in the end of the my selection value.
It should be
selection=model.city.content
instead
selection=model.city

Extended Hippie Completion in Pycharm?

Suppose you created a class class Story, and you also created an Admin panel for this, StoryAdmin. This is referring to a common scenario in making a Django Application.
Now, in story admin, you want to assign certain fields to be displayed. There is currently no auto-complete for this, but there is hippie complete. ALT + /.
But this only goes so far as suggestions within the current page one is working in. How does one extend hippie complete to extend to other files that one has created?
This feature is available in Sublime Text 2. If a more elaborate example of what I am talking about needs to be demonstrated, please say so in the comments.
If this question is not appropriate for SO, vote to close it.
It's not supported yet in PyCharm, please vote for this feature request.

Changing metatag "title"

I need to change the title of my website, because now the title is "Home".I want to add a "like" button to the website and I want something different instead of "Home" for the title. I tried changing the meta tag for "title" but running the url through the facebookb debug tool it says:
Attempted Frozen Title Change It appears that you are trying to change
the property og:title from XX to XY. If so, you are not allowed to for
this object because too many actions have been published against it.
How can I change the title? Thank you!
Sorry if my english is full of mistakes.
There isn't any way to change it. Facebook is basically telling you too many users have the object with the original title connected on Facebook. Changing after too many actions can be seen as an attempt to be misleading.

how can i get a next form/page while submitting a form?

i am working with a django quiz application where one question per page. when i will answer one question selecting a radio button and click submit button how can i get the next question in the next page as well as the answer will submitted to database. If anyone help me it would be an outstanding solution for me. please
Thanks for the answer , would you please i need bit specific answer. I wrote a view to get the question and render the answer in the radio link . but when i submit the answer how can i map the url to get dynamically new question each. thank you so much.
You need to write a view to handle your request. You need to edit urls.py to map your quiz url to the function in views.py (for your quiz app). So when a request with that quiz url comes Django applies that view function. So basically what this view does is this -
Get the answer & store it to DB. The DB details you need to define in models.py
Get the next question from DB (or wherever you store your questions).
Have a template (for quiz questions) with place holders for quiz question.
Form the new url & fill your template.
Redirect the user to the new url.
That does it. If you need any specifics lemme know.