Changeset 2797
- Timestamp:
- 03/24/2016 10:35:43 PM (9 years ago)
- Location:
- sites/branches/application-tracking/wordcamp.org/public_html/wp-content/plugins/wcpt
- Files:
-
- 3 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/branches/application-tracking/wordcamp.org/public_html/wp-content/plugins/wcpt/javascript/applications/wordcamp.js
r2787 r2797 22 22 23 23 var yesanswers = Array(); 24 yesanswers[ "pd-question-6" ] = Array( " 1865479", "1865480" );25 yesanswers[ "pd-question-9" ] = Array( " 1865375" );26 yesanswers[ "pd-question-13" ] = Array( " 1865384", "1865385", "1865386" );27 yesanswers[ "pd-question-15" ] = Array( " 1926723", "1926724", "1926725" );28 yesanswers[ "pd-question-20" ] = Array( " 1865485", "1865486", "1865487" );29 yesanswers[ "pd-question-22" ] = Array( " 1908677" );30 yesanswers[ "pd-question-27" ] = Array( " 1865453", "1865454" );24 yesanswers[ "pd-question-6" ] = Array( "Yes, more than one", "Yes, I've been to one" ); 25 yesanswers[ "pd-question-9" ] = Array( "Yes" ); 26 yesanswers[ "pd-question-13" ] = Array( "Once per month", "Several per month", "One every couple of months" ); 27 yesanswers[ "pd-question-15" ] = Array( "Yes, and I've attended some of them", "Yes, though I haven't attended any", "No, we've had a few but they weren't very well-attended" ); 28 yesanswers[ "pd-question-20" ] = Array( "Yes, I've planned events of similar size/scope", "I've organized similar types of events, but smaller", "I've organized other events" ); 29 yesanswers[ "pd-question-22" ] = Array( "Yes, I have co-organizers already" ); 30 yesanswers[ "pd-question-27" ] = Array( "Yes, I know lots of local WordPress users/developers", "Yes, I know a couple of people who would be qualified" ); 31 31 32 32 $( "input" ).click( function() { -
sites/branches/application-tracking/wordcamp.org/public_html/wp-content/plugins/wcpt/views/applications/wordcamp/shortcode-application.php
r2787 r2797 7 7 * todo 8 8 * 9 * make fields required10 9 * country use budgets iso. maybe create helper as wrapper 11 10 * go through and make sure each field is being shown and saved, especially ones with branching logic 12 11 * add post values back to form when errors? or browser validation enough? 12 * 13 * change q17 to individual fields? 13 14 * 14 15 * v2 … … 28 29 <div class="PDF_QT1900"> 29 30 <h2>Part I: About You</h2> 30 31 31 </div> 32 32 </div> … … 50 50 <label for="q_1079074_first_name">First Name</label> 51 51 <br /> 52 <input type="text" class="firstName" maxlength="50" name="q_1079074 [first_name]" id="q_1079074_first_name" value=""/>52 <input type="text" class="firstName" maxlength="50" name="q_1079074_first_name" id="q_1079074_first_name" value="" required /> 53 53 </div> 54 54 … … 56 56 <label for="q_1079074_last_name">Last Name</label> 57 57 <br /> 58 <input type="text" class="lastName" maxlength="50" name="q_1079074 [last_name]" id="q_1079074_last_name" value=""/>58 <input type="text" class="lastName" maxlength="50" name="q_1079074_last_name" id="q_1079074_last_name" value="" required /> 59 59 </div> 60 60 </div> … … 78 78 <label for="q_1079059_email">(e.g. john@example.com)</label> 79 79 <br /> 80 <input type=" text" maxlength="100" name="q_1079059[email]" id="q_1079059_email" value="" class="survey-email required" autocomplete="off"/>80 <input type="email" maxlength="100" name="q_1079059_email" id="q_1079059_email" value="" class="survey-email required" autocomplete="off" required /> 81 81 </div> 82 82 </div> … … 99 99 <label for="q_1079060_add1">Address Line 1</label> 100 100 <br /> 101 <input type="text" maxlength="100" class="a" name="q_1079060 [add1]" id="q_1079060_add1" value="" />101 <input type="text" maxlength="100" class="a" name="q_1079060_add1" id="q_1079060_add1" value="" /> 102 102 </div> 103 103 … … 105 105 <label for="q_1079060_add2">Address Line 2</label> 106 106 <br /> 107 <input type="text" maxlength="100" class="b" name="q_1079060 [add2]" id="q_1079060_add2" value="" />107 <input type="text" maxlength="100" class="b" name="q_1079060_add2" id="q_1079060_add2" value="" /> 108 108 </div> 109 109 … … 111 111 <label for="q_1079060_city">City</label> 112 112 <br /> 113 <input type="text" maxlength="50" class="c" name="q_1079060 [city]" id="q_1079060_city" value="" />113 <input type="text" maxlength="50" class="c" name="q_1079060_city" id="q_1079060_city" value="" /> 114 114 </div> 115 115 … … 117 117 <label for="q_1079060_state">State</label> 118 118 <br /> 119 <input type="text" maxlength="50" class="d" name="q_1079060 [state]" id="q_1079060_state" value="" />119 <input type="text" maxlength="50" class="d" name="q_1079060_state" id="q_1079060_state" value="" /> 120 120 </div> 121 121 … … 123 123 <label for="q_1079060_zip">Zip Code</label> 124 124 <br /> 125 <input type="text" maxlength="20" class="e" name="q_1079060 [zip]" id="q_1079060_zip" value="" />125 <input type="text" maxlength="20" class="e" name="q_1079060_zip" id="q_1079060_zip" value="" /> 126 126 </div> 127 127 … … 130 130 <br /> 131 131 132 <select name="q_1079060 [country]" id="q_1079060_country">132 <select name="q_1079060_country" id="q_1079060_country"> 133 133 <option value=""></option> 134 134 <option value="AF">Afghanistan</option> … … 387 387 <ul> 388 388 <li> 389 <input type="radio" name="q_1045947 [choice]" value="1865361" id="q_1045947_1865361" />389 <input type="radio" name="q_1045947_years_using_wp" value="7+ years" id="q_1045947_1865361" /> 390 390 391 391 <label for="q_1045947_1865361" value="1865361"> 392 392 7+ years </label> 393 394 </li> 395 <li> 396 <input type="radio" name="q_1045947[choice]" value="1865362" id="q_1045947_1865362" /> 393 </li> 394 <li> 395 <input type="radio" name="q_1045947_years_using_wp" value="6 years" id="q_1045947_1865362" /> 397 396 398 397 <label for="q_1045947_1865362" value="1865362"> 399 398 6 years </label> 400 401 </li> 402 <li> 403 <input type="radio" name="q_1045947[choice]" value="1865363" id="q_1045947_1865363" /> 399 </li> 400 <li> 401 <input type="radio" name="q_1045947_years_using_wp" value="5 years" id="q_1045947_1865363" /> 404 402 405 403 <label for="q_1045947_1865363" value="1865363"> 406 404 5 years </label> 407 408 </li> 409 <li> 410 <input type="radio" name="q_1045947[choice]" value="1865369" id="q_1045947_1865369" /> 405 </li> 406 <li> 407 <input type="radio" name="q_1045947_years_using_wp" value="4 years" id="q_1045947_1865369" /> 411 408 412 409 <label for="q_1045947_1865369" value="1865369"> 413 410 4 years </label> 414 415 </li> 416 <li> 417 <input type="radio" name="q_1045947[choice]" value="1865370" id="q_1045947_1865370" /> 411 </li> 412 <li> 413 <input type="radio" name="q_1045947_years_using_wp" value="3 years" id="q_1045947_1865370" /> 418 414 419 415 <label for="q_1045947_1865370" value="1865370"> 420 416 3 years </label> 421 422 </li> 423 <li> 424 <input type="radio" name="q_1045947[choice]" value="1865371" id="q_1045947_1865371" /> 417 </li> 418 <li> 419 <input type="radio" name="q_1045947_years_using_wp" value="2 years" id="q_1045947_1865371" /> 425 420 426 421 <label for="q_1045947_1865371" value="1865371"> 427 422 2 years </label> 428 429 </li> 430 <li> 431 <input type="radio" name="q_1045947[choice]" value="1865372" id="q_1045947_1865372" /> 423 </li> 424 <li> 425 <input type="radio" name="q_1045947_years_using_wp" value="1 year" id="q_1045947_1865372" /> 432 426 433 427 <label for="q_1045947_1865372" value="1865372"> 434 428 1 year </label> 435 436 </li> 437 <li> 438 <input type="radio" name="q_1045947[choice]" value="1865373" id="q_1045947_1865373" /> 429 </li> 430 <li> 431 <input type="radio" name="q_1045947_years_using_wp" value="less than a year" id="q_1045947_1865373" /> 439 432 440 433 <label for="q_1045947_1865373" value="1865373"> 441 434 Less than a year </label> 442 443 </li> 444 <li> 445 <input type="radio" name="q_1045947[choice]" value="1865374" id="q_1045947_1865374" /> 435 </li> 436 <li> 437 <input type="radio" name="q_1045947_years_using_wp" value="I don't use WordPress yet" id="q_1045947_1865374" /> 446 438 447 439 <label for="q_1045947_1865374" value="1865374"> 448 440 I don't use WordPress yet </label> 449 450 441 </li> 451 442 </ul> … … 469 460 <ul> 470 461 <li> 471 <input type="checkbox" name="q_1068246 [choice][]" id="q_1068246_1908777" value="1908777" />462 <input type="checkbox" name="q_1068246_ways_involved[]" id="q_1068246_1908777" value="I use WordPress for my website(s)" /> 472 463 473 464 <label for="q_1068246_1908777">I use WordPress for my website(s)</label> 474 475 </li> 476 <li> 477 <input type="checkbox" name="q_1068246[choice][]" id="q_1068246_1908778" value="1908778" /> 465 </li> 466 <li> 467 <input type="checkbox" name="q_1068246_ways_involved[]" id="q_1068246_1908778" value="I help other people use WordPress for their websites" /> 478 468 479 469 <label for="q_1068246_1908778">I help other people use WordPress for their websites</label> 480 481 </li> 482 <li> 483 <input type="checkbox" name="q_1068246[choice][]" id="q_1068246_1908779" value="1908779" /> 470 </li> 471 <li> 472 <input type="checkbox" name="q_1068246_ways_involved[]" id="q_1068246_1908779" value="I make plugins" /> 484 473 485 474 <label for="q_1068246_1908779">I make plugins</label> 486 487 </li> 488 <li> 489 <input type="checkbox" name="q_1068246[choice][]" id="q_1068246_1908831" value="1908831" /> 475 </li> 476 <li> 477 <input type="checkbox" name="q_1068246_ways_involved[]" id="q_1068246_1908831" value="I make themes" /> 490 478 491 479 <label for="q_1068246_1908831">I make themes</label> 492 493 </li> 494 <li> 495 <input type="checkbox" name="q_1068246[choice][]" id="q_1068246_1908832" value="1908832" /> 480 </li> 481 <li> 482 <input type="checkbox" name="q_1068246_ways_involved[]" id="q_1068246_1908832" value="I contribute to the WordPress core codebase" /> 496 483 497 484 <label for="q_1068246_1908832">I contribute to the WordPress core codebase</label> 498 499 </li> 500 <li> 501 <input type="checkbox" name="q_1068246[choice][]" id="q_1068246_1908833" value="1908833" /> 485 </li> 486 <li> 487 <input type="checkbox" name="q_1068246_ways_involved[]" id="q_1068246_1908833" value="I volunteer in the support forums at wordpress.org" /> 502 488 503 489 <label for="q_1068246_1908833">I volunteer in the support forums at wordpress.org</label> 504 505 </li> 506 <li> 507 <input type="checkbox" name="q_1068246[choice][]" id="q_1068246_1908834" value="1908834" /> 490 </li> 491 <li> 492 <input type="checkbox" name="q_1068246_ways_involved[]" id="q_1068246_1908834" value="I contribute to the WordPress core UI group" /> 508 493 509 494 <label for="q_1068246_1908834">I contribute to the WordPress core UI group</label> 510 511 </li> 512 <li> 513 <input type="checkbox" name="q_1068246[choice][]" id="q_1068246_1908835" value="1908835" /> 495 </li> 496 <li> 497 <input type="checkbox" name="q_1068246_ways_involved[]" id="q_1068246_1908835" value="I'm involved with local WordPress meetups" /> 514 498 515 499 <label for="q_1068246_1908835">I'm involved with local WordPress meetups</label> 516 517 </li> 518 <li> 519 <input type="checkbox" name="q_1068246[choice][]" id="q_1068246_1908836" value="1908836" /> 500 </li> 501 <li> 502 <input type="checkbox" name="q_1068246_ways_involved[]" id="q_1068246_1908836" value="I've been involved with previous WordCamps" /> 520 503 521 504 <label for="q_1068246_1908836">I've been involved with previous WordCamps</label> 522 523 </li> 524 <li> 525 <input type="checkbox" name="q_1068246[choice][]" id="q_1068246_1926765" value="1926765" /> 505 </li> 506 <li> 507 <input type="checkbox" name="q_1068246_ways_involved[]" id="q_1068246_1926765" value="WordPress helps me make a living" /> 526 508 527 509 <label for="q_1068246_1926765">WordPress helps me make a living</label> 528 529 510 </li> 530 511 … … 532 513 <label for="q_1068246_other">Other:</label> 533 514 534 <input type="text" class="other" name="q_1068246 [other]" id="q_1068246_other" value="" style="width: 75%" />515 <input type="text" class="other" name="q_1068246_ways_involved_other" id="q_1068246_other" value="" style="width: 75%" /> 535 516 </li> 536 517 </ul> … … 554 535 <ul> 555 536 <li> 556 <input type="radio" name="q_1046032 [choice]" value="1865479" id="q_1046032_1865479" />537 <input type="radio" name="q_1046032_attended_camp_before" value="Yes, more than one" id="q_1046032_1865479" /> 557 538 558 539 <label for="q_1046032_1865479" value="1865479"> 559 540 Yes, more than one </label> 560 561 </li> 562 <li> 563 <input type="radio" name="q_1046032[choice]" value="1865480" id="q_1046032_1865480" /> 541 </li> 542 <li> 543 <input type="radio" name="q_1046032_attended_camp_before" value="Yes, I've been to one" id="q_1046032_1865480" /> 564 544 565 545 <label for="q_1046032_1865480" value="1865480"> 566 546 Yes, I've been to one </label> 567 547 </li> 568 569 <li> 570 <input type="radio" name="q_1046032[choice]" value="1865481" id="q_1046032_1865481" /> 548 <li> 549 <input type="radio" name="q_1046032_attended_camp_before" value="1865481" id="q_1046032_1865481" /> 571 550 572 551 <label for="q_1046032_1865481" value="1865481"> … … 592 571 593 572 <div class="PDF_QT200"> 594 <textarea name="q_1046033 [text]" class="small" rows="10" cols="40" title="What WordCamps have you been to? Please list one pe…"></textarea>573 <textarea name="q_1046033_camps_been_to" class="small" rows="10" cols="40" title="What WordCamps have you been to? Please list one pe…"></textarea> 595 574 </div> 596 575 </div> … … 612 591 <ul> 613 592 <li> 614 <input type="checkbox" name="q_1068223 [choice][]" id="q_1068223_1908730" value="1908730" />593 <input type="checkbox" name="q_1068223_hope_to_accomplish[]" id="q_1068223_1908730" value="Grow my local WordPress community" /> 615 594 616 595 <label for="q_1068223_1908730">Grow my local WordPress community</label> 617 618 </li> 619 <li> 620 <input type="checkbox" name="q_1068223[choice][]" id="q_1068223_1908731" value="1908731" /> 596 </li> 597 <li> 598 <input type="checkbox" name="q_1068223_hope_to_accomplish[]" id="q_1068223_1908731" value="Introduce new people to WordPress/teach new users" /> 621 599 622 600 <label for="q_1068223_1908731">Introduce new people to WordPress/teach new users</label> 623 624 </li> 625 <li> 626 <input type="checkbox" name="q_1068223[choice][]" id="q_1068223_1908732" value="1908732" /> 601 </li> 602 <li> 603 <input type="checkbox" name="q_1068223_hope_to_accomplish[]" id="q_1068223_1908732" value="Find collaborators for WordPress projects" /> 627 604 628 605 <label for="q_1068223_1908732">Find collaborators for WordPress projects</label> 629 630 </li> 631 <li> 632 <input type="checkbox" name="q_1068223[choice][]" id="q_1068223_1908771" value="1908771" /> 606 </li> 607 <li> 608 <input type="checkbox" name="q_1068223_hope_to_accomplish[]" id="q_1068223_1908771" value="Raise my visibility in the community" /> 633 609 634 610 <label for="q_1068223_1908771">Raise my visibility in the community</label> 635 636 </li> 637 <li> 638 <input type="checkbox" name="q_1068223[choice][]" id="q_1068223_1908772" value="1908772" /> 611 </li> 612 <li> 613 <input type="checkbox" name="q_1068223_hope_to_accomplish[]" id="q_1068223_1908772" value="Make connections with visiting speakers (like Matt Mullenweg)" /> 639 614 640 615 <label for="q_1068223_1908772">Make connections with visiting speakers (like Matt Mullenweg)</label> 641 642 </li> 643 <li> 644 <input type="checkbox" name="q_1068223[choice][]" id="q_1068223_1908773" value="1908773" /> 616 </li> 617 <li> 618 <input type="checkbox" name="q_1068223_hope_to_accomplish[]" id="q_1068223_1908773" value="Make money from surplus ticket sales/sponsorships" /> 645 619 646 620 <label for="q_1068223_1908773">Make money from surplus ticket sales/sponsorships</label> 647 648 </li> 649 <li> 650 <input type="checkbox" name="q_1068223[choice][]" id="q_1068223_1908774" value="1908774" /> 621 </li> 622 <li> 623 <input type="checkbox" name="q_1068223_hope_to_accomplish[]" id="q_1068223_1908774" value="Have fun/throw a good party" /> 651 624 652 625 <label for="q_1068223_1908774">Have fun/throw a good party</label> 653 654 </li> 655 <li> 656 <input type="checkbox" name="q_1068223[choice][]" id="q_1068223_1908775" value="1908775" /> 626 </li> 627 <li> 628 <input type="checkbox" name="q_1068223_hope_to_accomplish[]" id="q_1068223_1908775" value="Be part of the zeitgeist, as WordCamps are very popular right now" /> 657 629 658 630 <label for="q_1068223_1908775">Be part of the zeitgeist, as WordCamps are very popular right now</label> 659 660 </li> 661 <li> 662 <input type="checkbox" name="q_1068223[choice][]" id="q_1068223_1908776" value="1908776" /> 631 </li> 632 <li> 633 <input type="checkbox" name="q_1068223_hope_to_accomplish[]" id="q_1068223_1908776" value="Inspire people to do more with WordPress" /> 663 634 664 635 <label for="q_1068223_1908776">Inspire people to do more with WordPress</label> 665 666 636 </li> 667 637 … … 669 639 <label for="q_1068223_other">Other:</label> 670 640 671 <input type="text" class="other" name="q_1068223 [other]" id="q_1068223_other" value="" style="width: 75%" />641 <input type="text" class="other" name="q_1068223_hope_to_accomplish_other" id="q_1068223_other" value="" style="width: 75%" /> 672 642 </li> 673 643 </ul> … … 701 671 <ul> 702 672 <li> 703 <input type="radio" name="q_1045950 [choice]" value="1865375" id="q_1045950_1865375" />673 <input type="radio" name="q_1045950_active_meetup" value="Yes" id="q_1045950_1865375" /> 704 674 705 675 <label for="q_1045950_1865375" value="1865375"> 706 676 Yes </label> 707 708 </li> 709 <li> 710 <input type="radio" name="q_1045950[choice]" value="1865376" id="q_1045950_1865376" /> 677 </li> 678 <li> 679 <input type="radio" name="q_1045950_active_meetup" value="No" id="q_1045950_1865376" /> 711 680 712 681 <label for="q_1045950_1865376" value="1865376"> 713 682 No </label> 714 715 </li> 716 <li> 717 <input type="radio" name="q_1045950[choice]" value="1865377" id="q_1045950_1865377" /> 683 </li> 684 <li> 685 <input type="radio" name="q_1045950_active_meetup" value="I don't know" id="q_1045950_1865377" /> 718 686 719 687 <label for="q_1045950_1865377" value="1865377"> 720 688 I don't know </label> 721 722 689 </li> 723 690 </ul> … … 741 708 <ul> 742 709 <li> 743 <input type="radio" name="q_1045953 [choice]" value="1865378" id="q_1045953_1865378" />710 <input type="radio" name="q_1045953_role_in_meetup" value="I am the organizer" id="q_1045953_1865378" /> 744 711 745 712 <label for="q_1045953_1865378" value="1865378"> 746 713 I am the organizer </label> 747 748 </li> 749 <li> 750 <input type="radio" name="q_1045953[choice]" value="1865379" id="q_1045953_1865379" /> 714 </li> 715 <li> 716 <input type="radio" name="q_1045953_role_in_meetup" value="I am a regular attendee and presenter" id="q_1045953_1865379" /> 751 717 752 718 <label for="q_1045953_1865379" value="1865379"> 753 719 I am a regular attendee and presenter </label> 754 755 </li> 756 <li> 757 <input type="radio" name="q_1045953[choice]" value="1865380" id="q_1045953_1865380" /> 720 </li> 721 <li> 722 <input type="radio" name="q_1045953_role_in_meetup" value="I attend regularly but don't present" id="q_1045953_1865380" /> 758 723 759 724 <label for="q_1045953_1865380" value="1865380"> 760 725 I attend regularly but don't present </label> 761 762 </li> 763 <li> 764 <input type="radio" name="q_1045953[choice]" value="1865381" id="q_1045953_1865381" /> 726 </li> 727 <li> 728 <input type="radio" name="q_1045953_role_in_meetup" value="I attend sometimes" id="q_1045953_1865381" /> 765 729 766 730 <label for="q_1045953_1865381" value="1865381"> 767 731 I attend sometimes </label> 768 769 </li> 770 <li> 771 <input type="radio" name="q_1045953[choice]" value="1865382" id="q_1045953_1865382" /> 732 </li> 733 <li> 734 <input type="radio" name="q_1045953_role_in_meetup" value="I attend rarely" id="q_1045953_1865382" /> 772 735 773 736 <label for="q_1045953_1865382" value="1865382"> 774 737 I attend rarely </label> 775 776 </li> 777 <li> 778 <input type="radio" name="q_1045953[choice]" value="1865383" id="q_1045953_1865383" /> 738 </li> 739 <li> 740 <input type="radio" name="q_1045953_role_in_meetup" value="I do not attend the meetups" id="q_1045953_1865383" /> 779 741 780 742 <label for="q_1045953_1865383" value="1865383"> 781 743 I do not attend the meetups </label> 782 783 744 </li> 784 745 </ul> … … 800 761 801 762 <div class="PDF_QT100"> 802 <input value="" maxlength="500" name="q_1045972 [text]" class="large" type="text" title="What is the URL for the meetup group's website?" />763 <input value="" maxlength="500" name="q_1045972_meetup_url" class="large" type="url" title="What is the URL for the meetup group's website?" /> 803 764 </div> 804 765 </div> … … 820 781 <ul> 821 782 <li> 822 <input type="radio" name="q_1045967 [choice]" value="1865388" id="q_1045967_1865388" />783 <input type="radio" name="q_1045967_meetup_members" value="500+" id="q_1045967_1865388" /> 823 784 824 785 <label for="q_1045967_1865388" value="1865388"> 825 786 500+ </label> 826 827 </li> 828 <li> 829 <input type="radio" name="q_1045967[choice]" value="1865389" id="q_1045967_1865389" /> 787 </li> 788 <li> 789 <input type="radio" name="q_1045967_meetup_members" value="300-499" id="q_1045967_1865389" /> 830 790 831 791 <label for="q_1045967_1865389" value="1865389"> 832 792 300-499 </label> 833 834 </li> 835 <li> 836 <input type="radio" name="q_1045967[choice]" value="1865390" id="q_1045967_1865390" /> 793 </li> 794 <li> 795 <input type="radio" name="q_1045967_meetup_members" value="100-299" id="q_1045967_1865390" /> 837 796 838 797 <label for="q_1045967_1865390" value="1865390"> 839 798 100-299 </label> 840 841 </li> 842 <li> 843 <input type="radio" name="q_1045967[choice]" value="1865391" id="q_1045967_1865391" /> 799 </li> 800 <li> 801 <input type="radio" name="q_1045967_meetup_members" value="50-99" id="q_1045967_1865391" /> 844 802 845 803 <label for="q_1045967_1865391" value="1865391"> 846 804 50-99 </label> 847 848 </li> 849 <li> 850 <input type="radio" name="q_1045967[choice]" value="1865392" id="q_1045967_1865392" /> 805 </li> 806 <li> 807 <input type="radio" name="q_1045967_meetup_members" value="26-49" id="q_1045967_1865392" /> 851 808 852 809 <label for="q_1045967_1865392" value="1865392"> 853 810 26-49 </label> 854 855 </li> 856 <li> 857 <input type="radio" name="q_1045967[choice]" value="1865393" id="q_1045967_1865393" /> 811 </li> 812 <li> 813 <input type="radio" name="q_1045967_meetup_members" value="1-25" id="q_1045967_1865393" /> 858 814 859 815 <label for="q_1045967_1865393" value="1865393"> 860 816 1-25 </label> 861 862 </li> 863 <li> 864 <input type="radio" name="q_1045967[choice]" value="1926755" id="q_1045967_1926755" /> 817 </li> 818 <li> 819 <input type="radio" name="q_1045967_meetup_members" value="I don't know" id="q_1045967_1926755" /> 865 820 866 821 <label for="q_1045967_1926755" value="1926755"> 867 822 I don't know </label> 868 869 823 </li> 870 824 </ul> … … 888 842 <ul> 889 843 <li> 890 <input type="radio" name="q_1045956 [choice]" value="1865384" id="q_1045956_1865384" />844 <input type="radio" name="q_1045956_how_often_meetup" value="Once per month" id="q_1045956_1865384" /> 891 845 892 846 <label for="q_1045956_1865384" value="1865384"> 893 847 Once per month </label> 894 895 </li> 896 <li> 897 <input type="radio" name="q_1045956[choice]" value="1865385" id="q_1045956_1865385" /> 848 </li> 849 <li> 850 <input type="radio" name="q_1045956_how_often_meetup" value="Several per month" id="q_1045956_1865385" /> 898 851 899 852 <label for="q_1045956_1865385" value="1865385"> 900 853 Several per month </label> 901 902 </li> 903 <li> 904 <input type="radio" name="q_1045956[choice]" value="1865386" id="q_1045956_1865386" /> 854 </li> 855 <li> 856 <input type="radio" name="q_1045956_how_often_meetup" value="One every couple of months" id="q_1045956_1865386" /> 905 857 906 858 <label for="q_1045956_1865386" value="1865386"> 907 859 One every couple of months </label> 908 909 </li> 910 <li> 911 <input type="radio" name="q_1045956[choice]" value="1865387" id="q_1045956_1865387" /> 860 </li> 861 <li> 862 <input type="radio" name="q_1045956_how_often_meetup" value="There's a group but it never meets" id="q_1045956_1865387" /> 912 863 913 864 <label for="q_1045956_1865387" value="1865387"> 914 865 There's a group but it never meets </label> 915 916 866 </li> 917 867 </ul> … … 935 885 <ul> 936 886 <li> 937 <input type="radio" name="q_1045971 [choice]" value="1865397" id="q_1045971_1865397" />887 <input type="radio" name="q_1045971_how_many_attend" value="500+" id="q_1045971_1865397" /> 938 888 939 889 <label for="q_1045971_1865397" value="1865397"> 940 890 500+ </label> 941 942 </li> 943 <li> 944 <input type="radio" name="q_1045971[choice]" value="1865398" id="q_1045971_1865398" /> 891 </li> 892 <li> 893 <input type="radio" name="q_1045971_how_many_attend" value="300-499" id="q_1045971_1865398" /> 945 894 946 895 <label for="q_1045971_1865398" value="1865398"> 947 896 300-499 </label> 948 949 </li> 950 <li> 951 <input type="radio" name="q_1045971[choice]" value="1865399" id="q_1045971_1865399" /> 897 </li> 898 <li> 899 <input type="radio" name="q_1045971_how_many_attend" value="100-299" id="q_1045971_1865399" /> 952 900 953 901 <label for="q_1045971_1865399" value="1865399"> 954 902 100-299 </label> 955 956 </li> 957 <li> 958 <input type="radio" name="q_1045971[choice]" value="1865400" id="q_1045971_1865400" /> 903 </li> 904 <li> 905 <input type="radio" name="q_1045971_how_many_attend" value="50-99" id="q_1045971_1865400" /> 959 906 960 907 <label for="q_1045971_1865400" value="1865400"> 961 908 50-99 </label> 962 963 </li> 964 <li> 965 <input type="radio" name="q_1045971[choice]" value="1865401" id="q_1045971_1865401" /> 909 </li> 910 <li> 911 <input type="radio" name="q_1045971_how_many_attend" value="26-49" id="q_1045971_1865401" /> 966 912 967 913 <label for="q_1045971_1865401" value="1865401"> 968 914 26-49 </label> 969 970 </li> 971 <li> 972 <input type="radio" name="q_1045971[choice]" value="1865402" id="q_1045971_1865402" /> 915 </li> 916 <li> 917 <input type="radio" name="q_1045971_how_many_attend" value="1-25" id="q_1045971_1865402" /> 973 918 974 919 <label for="q_1045971_1865402" value="1865402"> 975 920 1-25 </label> 976 977 921 </li> 978 922 </ul> … … 996 940 <ul> 997 941 <li> 998 <input type="radio" name="q_1079086 [choice]" value="1926723" id="q_1079086_1926723" />942 <input type="radio" name="q_1079086_other_tech_events" value="Yes, and I've attended some of them" id="q_1079086_1926723" /> 999 943 1000 944 <label for="q_1079086_1926723" value="1926723"> 1001 945 Yes, and I've attended some of them </label> 1002 1003 </li> 1004 <li> 1005 <input type="radio" name="q_1079086[choice]" value="1926724" id="q_1079086_1926724" /> 946 </li> 947 <li> 948 <input type="radio" name="q_1079086_other_tech_events" value="Yes, though I haven't attended any" id="q_1079086_1926724" /> 1006 949 1007 950 <label for="q_1079086_1926724" value="1926724"> 1008 951 Yes, though I haven't attended any </label> 1009 1010 </li> 1011 <li> 1012 <input type="radio" name="q_1079086[choice]" value="1926725" id="q_1079086_1926725" /> 952 </li> 953 <li> 954 <input type="radio" name="q_1079086_other_tech_events" value="No, we've had a few but they weren't very well-attended" id="q_1079086_1926725" /> 1013 955 1014 956 <label for="q_1079086_1926725" value="1926725"> 1015 957 No, we've had a few but they weren't very well-attended </label> 1016 1017 </li> 1018 <li> 1019 <input type="radio" name="q_1079086[choice]" value="1926744" id="q_1079086_1926744" /> 958 </li> 959 <li> 960 <input type="radio" name="q_1079086_other_tech_events" value="We haven't had any community tech events yet" id="q_1079086_1926744" /> 1020 961 1021 962 <label for="q_1079086_1926744" value="1926744"> 1022 963 We haven't had any community tech events yet </label> 1023 1024 </li> 1025 <li> 1026 <input type="radio" name="q_1079086[choice]" value="1926745" id="q_1079086_1926745" /> 964 </li> 965 <li> 966 <input type="radio" name="q_1079086_other_tech_events" value="I am not sure what events have been held here before, or if they've been successful" id="q_1079086_1926745" /> 1027 967 1028 968 <label for="q_1079086_1926745" value="1926745"> 1029 969 I am not sure what events have been held here before, or if they've been successful </label> 1030 1031 970 </li> 1032 971 </ul> … … 1048 987 1049 988 <div class="PDF_QT200"> 1050 <textarea name="q_1079082 [text]" class="small" rows="10" cols="40" title="List any community tech events that have/have not b…"></textarea>989 <textarea name="q_1079082_other_tech_events_success" class="small" rows="10" cols="40" title="List any community tech events that have/have not b…"></textarea> 1051 990 </div> 1052 991 </div> … … 1076 1015 1077 1016 <div class="PDF_QT100"> 1078 <input value="" maxlength="500" name="q_1079103 [text]" class="large" type="text" title="Enter the city, state/province, and country where y…" />1017 <input value="" maxlength="500" name="q_1079103_wordcamp_location" class="large" type="text" title="Enter the city, state/province, and country where y…" /> 1079 1018 </div> 1080 1019 </div> … … 1094 1033 1095 1034 <div class="PDF_QT100"> 1096 <input value="" maxlength="500" name="q_1046006 [text]" class="large" type="text" title="When do you want to have a WordCamp in your city? (…" />1035 <input value="" maxlength="500" name="q_1046006_wordcamp_date" class="large" type="text" title="When do you want to have a WordCamp in your city? (…" /> 1097 1036 </div> 1098 1037 </div> … … 1112 1051 1113 1052 <div class="PDF_QT100"> 1114 <input value="" maxlength="500" name="q_1046007 [text]" class="large" type="text" title="How many people do you think would attend?" />1053 <input value="" maxlength="500" name="q_1046007_how_many_attendees" class="large" type="text" title="How many people do you think would attend?" /> 1115 1054 </div> 1116 1055 </div> … … 1132 1071 <ul> 1133 1072 <li> 1134 <input type="radio" name="q_1046038 [choice]" value="1865485" id="q_1046038_1865485" />1073 <input type="radio" name="q_1046038_organized_event_before" value="Yes, I've planned events of similar size/scope" id="q_1046038_1865485" /> 1135 1074 1136 1075 <label for="q_1046038_1865485" value="1865485"> 1137 1076 Yes, I've planned events of similar size/scope </label> 1138 1139 </li> 1140 <li> 1141 <input type="radio" name="q_1046038[choice]" value="1865486" id="q_1046038_1865486" /> 1077 </li> 1078 <li> 1079 <input type="radio" name="q_1046038_organized_event_before" value="I've organized similar types of events, but smaller" id="q_1046038_1865486" /> 1142 1080 1143 1081 <label for="q_1046038_1865486" value="1865486"> 1144 1082 I've organized similar types of events, but smaller </label> 1145 1146 </li> 1147 <li> 1148 <input type="radio" name="q_1046038[choice]" value="1865487" id="q_1046038_1865487" /> 1083 </li> 1084 <li> 1085 <input type="radio" name="q_1046038_organized_event_before" value="1865487" id="q_1046038_1865487" /> 1149 1086 1150 1087 <label for="q_1046038_1865487" value="1865487"> 1151 1088 I've organized other events </label> 1152 1153 </li> 1154 <li> 1155 <input type="radio" name="q_1046038[choice]" value="1865495" id="q_1046038_1865495" /> 1089 </li> 1090 <li> 1091 <input type="radio" name="q_1046038_organized_event_before" value="I've never organized an event before" id="q_1046038_1865495" /> 1156 1092 1157 1093 <label for="q_1046038_1865495" value="1865495"> 1158 1094 I've never organized an event before </label> 1159 1160 1095 </li> 1161 1096 </ul> … … 1177 1112 1178 1113 <div class="PDF_QT200"> 1179 <textarea name="q_1046099 [text]" class="small" rows="10" cols="40" title="Please give a brief description of the events you'v…"></textarea>1114 <textarea name="q_1046099_describe_events" class="small" rows="10" cols="40" title="Please give a brief description of the events you'v…"></textarea> 1180 1115 </div> 1181 1116 </div> … … 1197 1132 <ul> 1198 1133 <li> 1199 <input type="radio" name="q_1046101 [choice]" value="1908677" id="q_1046101_1908677" />1134 <input type="radio" name="q_1046101_have_co_organizers" value="Yes, I have co-organizers already" id="q_1046101_1908677" /> 1200 1135 1201 1136 <label for="q_1046101_1908677" value="1908677"> 1202 1137 Yes, I have co-organizers already </label> 1203 1204 </li> 1205 <li> 1206 <input type="radio" name="q_1046101[choice]" value="1865560" id="q_1046101_1865560" /> 1138 </li> 1139 <li> 1140 <input type="radio" name="q_1046101_have_co_organizers" value="Nope, but I know some people who might be interested" id="q_1046101_1865560" /> 1207 1141 1208 1142 <label for="q_1046101_1865560" value="1865560"> 1209 1143 Nope, but I know some people who might be interested </label> 1210 1211 </li> 1212 <li> 1213 <input type="radio" name="q_1046101[choice]" value="1865561" id="q_1046101_1865561" /> 1144 </li> 1145 <li> 1146 <input type="radio" name="q_1046101_have_co_organizers" value="Nope, I probably need help to find co-organizers" id="q_1046101_1865561" /> 1214 1147 1215 1148 <label for="q_1046101_1865561" value="1865561"> 1216 1149 Nope, I probably need help to find co-organizers </label> 1217 1218 </li> 1219 <li> 1220 <input type="radio" name="q_1046101[choice]" value="1865562" id="q_1046101_1865562" /> 1150 </li> 1151 <li> 1152 <input type="radio" name="q_1046101_have_co_organizers" value="Nope, I want to do it by myself" id="q_1046101_1865562" /> 1221 1153 1222 1154 <label for="q_1046101_1865562" value="1865562"> … … 1243 1175 <ul> 1244 1176 <li> 1245 <input type="checkbox" name="q_1068188 [choice][]" id="q_1068188_1908678" value="1908678" />1177 <input type="checkbox" name="q_1068188_relationship_co_organizers[]" id="q_1068188_1908678" value="We work for the same company" /> 1246 1178 1247 1179 <label for="q_1068188_1908678">We work for the same company</label> 1248 1249 </li> 1250 <li> 1251 <input type="checkbox" name="q_1068188[choice][]" id="q_1068188_1908679" value="1908679" /> 1180 </li> 1181 <li> 1182 <input type="checkbox" name="q_1068188_relationship_co_organizers[]" id="q_1068188_1908679" value="We're friends" /> 1252 1183 1253 1184 <label for="q_1068188_1908679">We're friends</label> 1254 1255 </li> 1256 <li> 1257 <input type="checkbox" name="q_1068188[choice][]" id="q_1068188_1908680" value="1908680" /> 1185 </li> 1186 <li> 1187 <input type="checkbox" name="q_1068188_relationship_co_organizers[]" id="q_1068188_1908680" value="We've collaborated on projects before" /> 1258 1188 1259 1189 <label for="q_1068188_1908680">We've collaborated on projects before</label> 1260 1261 </li> 1262 <li> 1263 <input type="checkbox" name="q_1068188[choice][]" id="q_1068188_1908689" value="1908689" /> 1190 </li> 1191 <li> 1192 <input type="checkbox" name="q_1068188_relationship_co_organizers[]" id="q_1068188_1908689" value="We met through the meetup group/other tech event" /> 1264 1193 1265 1194 <label for="q_1068188_1908689">We met through the meetup group/other tech event</label> 1266 1267 </li> 1268 1195 </li> 1269 1196 <li> 1270 1197 <label for="q_1068188_other">Other:</label> 1271 1198 1272 <input type="text" class="other" name="q_1068188 [other]" id="q_1068188_other" value="" style="width: 75%" />1199 <input type="text" class="other" name="q_1068188_relationship_co_organizers_other" id="q_1068188_other" value="" style="width: 75%" /> 1273 1200 </li> 1274 1201 </ul> … … 1290 1217 1291 1218 <div class="PDF_QT200"> 1292 <textarea name="q_1068187 [text]" class="small" rows="10" cols="40" title="Please enter the names and email addresses of your …"></textarea>1219 <textarea name="q_1068187_co_organizer_contact_info" class="small" rows="10" cols="40" title="Please enter the names and email addresses of your …"></textarea> 1293 1220 </div> 1294 1221 </div> … … 1310 1237 <ul> 1311 1238 <li> 1312 <input type="radio" name="q_1068214 [choice]" value="1908711" id="q_1068214_1908711" />1239 <input type="radio" name="q_1068214_raise_money" value="Yes, I'm cool with the fundraising" id="q_1068214_1908711" /> 1313 1240 1314 1241 <label for="q_1068214_1908711" value="1908711"> 1315 1242 Yes, I'm cool with the fundraising </label> 1316 1317 </li> 1318 <li> 1319 <input type="radio" name="q_1068214[choice]" value="1908712" id="q_1068214_1908712" /> 1243 </li> 1244 <li> 1245 <input type="radio" name="q_1068214_raise_money" value="I'm not sure -- I haven't done this before but I'll do my best" id="q_1068214_1908712" /> 1320 1246 1321 1247 <label for="q_1068214_1908712" value="1908712"> 1322 1248 I'm not sure -- I haven't done this before but I'll do my best </label> 1323 1324 </li> 1325 <li> 1326 <input type="radio" name="q_1068214[choice]" value="1908713" id="q_1068214_1908713" /> 1249 </li> 1250 <li> 1251 <input type="radio" name="q_1068214_raise_money" value="Not really, I hate asking people for money" id="q_1068214_1908713" /> 1327 1252 1328 1253 <label for="q_1068214_1908713" value="1908713"> 1329 1254 Not really, I hate asking people for money </label> 1330 1331 1255 </li> 1332 1256 </ul> … … 1348 1272 1349 1273 <div class="PDF_QT100"> 1350 <input value="" maxlength="500" name="q_1068220 [text]" class="large" type="text" title="If there are businesses already interested in spons…" />1274 <input value="" maxlength="500" name="q_1068220_interested_sponsors" class="large" type="text" title="If there are businesses already interested in spons…" /> 1351 1275 </div> 1352 1276 </div> … … 1368 1292 <ul> 1369 1293 <li> 1370 <input type="radio" name="q_1046009 [choice]" value="1865453" id="q_1046009_1865453" />1294 <input type="radio" name="q_1046009_good_presenters" value="Yes, I know lots of local WordPress users/developers" id="q_1046009_1865453" /> 1371 1295 1372 1296 <label for="q_1046009_1865453" value="1865453"> 1373 1297 Yes, I know lots of local WordPress users/developers </label> 1374 1375 </li> 1376 <li> 1377 <input type="radio" name="q_1046009[choice]" value="1865454" id="q_1046009_1865454" /> 1298 </li> 1299 <li> 1300 <input type="radio" name="q_1046009_good_presenters" value="Yes, I know a couple of people who would be qualified" id="q_1046009_1865454" /> 1378 1301 1379 1302 <label for="q_1046009_1865454" value="1865454"> 1380 1303 Yes, I know a couple of people who would be qualified </label> 1381 1382 </li> 1383 <li> 1384 <input type="radio" name="q_1046009[choice]" value="1865455" id="q_1046009_1865455" /> 1304 </li> 1305 <li> 1306 <input type="radio" name="q_1046009_good_presenters" value="No, I don't know anyone local who could speak" id="q_1046009_1865455" /> 1385 1307 1386 1308 <label for="q_1046009_1865455" value="1865455"> … … 1405 1327 1406 1328 <div class="PDF_QT200"> 1407 <textarea name="q_1046021 [text]" class="small" rows="10" cols="40" title="Please enter the names of the people you have in mi…"></textarea>1329 <textarea name="q_1046021_presenter_names" class="small" rows="10" cols="40" title="Please enter the names of the people you have in mi…"></textarea> 1408 1330 </div> 1409 1331 </div> … … 1425 1347 <ul> 1426 1348 <li> 1427 <input type="radio" name="q_1068197 [choice]" value="1908695" id="q_1068197_1908695" />1349 <input type="radio" name="q_1068197_venue_connections" value="Yes, I've been talking to people already" id="q_1068197_1908695" /> 1428 1350 1429 1351 <label for="q_1068197_1908695" value="1908695"> 1430 1352 Yes, I've been talking to people already </label> 1431 1432 </li> 1433 <li> 1434 <input type="radio" name="q_1068197[choice]" value="1908696" id="q_1068197_1908696" /> 1353 </li> 1354 <li> 1355 <input type="radio" name="q_1068197_venue_connections" value="No, but I have some leads" id="q_1068197_1908696" /> 1435 1356 1436 1357 <label for="q_1068197_1908696" value="1908696"> 1437 1358 No, but I have some leads </label> 1438 1439 </li> 1440 <li> 1441 <input type="radio" name="q_1068197[choice]" value="1908697" id="q_1068197_1908697" /> 1359 </li> 1360 <li> 1361 <input type="radio" name="q_1068197_venue_connections" value="No, I'll be looking for a venue from scratch" id="q_1068197_1908697" /> 1442 1362 1443 1363 <label for="q_1068197_1908697" value="1908697"> … … 1462 1382 1463 1383 <div class="PDF_QT200"> 1464 <textarea name="q_1068212 [text]" class="small" rows="10" cols="40" title="What possible venues are you considering?"></textarea>1384 <textarea name="q_1068212_venues_considering" class="small" rows="10" cols="40" title="What possible venues are you considering?"></textarea> 1465 1385 </div> 1466 1386 </div> … … 1485 1405 1486 1406 <div class="PDF_QT100"> 1487 <input value="" maxlength="500" name="q_4236565 [text]" class="large required" type="text" title="What is your wordpress.org username?"/>1407 <input value="" maxlength="500" name="q_4236565_wporg_username" class="large required" type="text" title="What is your wordpress.org username?" required /> 1488 1408 </div> 1489 1409 </div> … … 1503 1423 1504 1424 <div class="PDF_QT200"> 1505 <textarea name="q_1079098 [text]" class="large" rows="10" cols="40" title="Anything else you want us to know while we're looki…"></textarea>1425 <textarea name="q_1079098_anything_else" class="large" rows="10" cols="40" title="Anything else you want us to know while we're looki…"></textarea> 1506 1426 </div> 1507 1427 </div> … … 1533 1453 <ul> 1534 1454 <li> 1535 <input type="radio" name="q_1079112 [choice]" value="1926766" id="q_1079112_1926766" />1455 <input type="radio" name="q_1079112_best_describes_you" value="Personal Blogger" id="q_1079112_1926766" /> 1536 1456 1537 1457 <label for="q_1079112_1926766" value="1926766"> 1538 1458 Personal Blogger </label> 1539 1540 </li> 1541 <li> 1542 <input type="radio" name="q_1079112[choice]" value="1926767" id="q_1079112_1926767" /> 1459 </li> 1460 <li> 1461 <input type="radio" name="q_1079112_best_describes_you" value="Company Blogger" id="q_1079112_1926767" /> 1543 1462 1544 1463 <label for="q_1079112_1926767" value="1926767"> 1545 1464 Company Blogger </label> 1546 1547 </li> 1548 <li> 1549 <input type="radio" name="q_1079112[choice]" value="1926768" id="q_1079112_1926768" /> 1465 </li> 1466 <li> 1467 <input type="radio" name="q_1079112_best_describes_you" value="Designer" id="q_1079112_1926768" /> 1550 1468 1551 1469 <label for="q_1079112_1926768" value="1926768"> 1552 1470 Designer </label> 1553 1554 </li> 1555 <li> 1556 <input type="radio" name="q_1079112[choice]" value="1926769" id="q_1079112_1926769" /> 1471 </li> 1472 <li> 1473 <input type="radio" name="q_1079112_best_describes_you" value="Beginning Developer" id="q_1079112_1926769" /> 1557 1474 1558 1475 <label for="q_1079112_1926769" value="1926769"> 1559 1476 Beginning Developer </label> 1560 1561 </li> 1562 <li> 1563 <input type="radio" name="q_1079112[choice]" value="1926770" id="q_1079112_1926770" /> 1477 </li> 1478 <li> 1479 <input type="radio" name="q_1079112_best_describes_you" value="Advanced Developer" id="q_1079112_1926770" /> 1564 1480 1565 1481 <label for="q_1079112_1926770" value="1926770"> 1566 1482 Advanced Developer </label> 1567 1568 </li> 1569 <li> 1570 <input type="radio" name="q_1079112[choice]" value="1926771" id="q_1079112_1926771" /> 1483 </li> 1484 <li> 1485 <input type="radio" name="q_1079112_best_describes_you" value="Project Manager" id="q_1079112_1926771" /> 1571 1486 1572 1487 <label for="q_1079112_1926771" value="1926771"> 1573 1488 Project Manager </label> 1574 1575 </li> 1576 <li> 1577 <input type="radio" name="q_1079112[choice]" value="1926772" id="q_1079112_1926772" /> 1489 </li> 1490 <li> 1491 <input type="radio" name="q_1079112_best_describes_you" value="System Administrator/IT Professional" id="q_1079112_1926772" /> 1578 1492 1579 1493 <label for="q_1079112_1926772" value="1926772"> 1580 1494 System Administrator/IT Professional </label> 1581 1582 </li> 1583 <li> 1584 <input type="radio" name="q_1079112[choice]" value="1926773" id="q_1079112_1926773" /> 1495 </li> 1496 <li> 1497 <input type="radio" name="q_1079112_best_describes_you" value="Sales/Marketing/PR" id="q_1079112_1926773" /> 1585 1498 1586 1499 <label for="q_1079112_1926773" value="1926773"> 1587 1500 Sales/Marketing/PR </label> 1588 1589 </li> 1590 <li> 1591 <input type="radio" name="q_1079112[choice]" value="1926774" id="q_1079112_1926774" /> 1501 </li> 1502 <li> 1503 <input type="radio" name="q_1079112_best_describes_you" value="Business Owner" id="q_1079112_1926774" /> 1592 1504 1593 1505 <label for="q_1079112_1926774" value="1926774"> 1594 1506 Business Owner </label> 1595 1596 </li> 1597 <li> 1598 <input type="radio" name="q_1079112[choice]" value="1926775" id="q_1079112_1926775" /> 1507 </li> 1508 <li> 1509 <input type="radio" name="q_1079112_best_describes_you" value="WordPress Fan" id="q_1079112_1926775" /> 1599 1510 1600 1511 <label for="q_1079112_1926775" value="1926775"> 1601 1512 WordPress Fan </label> 1602 1603 </li> 1604 1605 <li> 1606 <input type="radio" name="q_1079112[choice]" id="q_1079112_other" value="other" /> 1513 </li> 1514 <li> 1515 <input type="radio" name="q_1079112_best_describes_you" id="q_1079112_other" value="other" /> 1607 1516 1608 1517 <label for="q_1079112_other"> … … 1610 1519 </label> 1611 1520 1612 <input type="text" class="other" name="q_1079112 [other]" value="" style="width: 75%" />1521 <input type="text" class="other" name="q_1079112_best_describes_you_other" value="" style="width: 75%" /> 1613 1522 </li> 1614 1523 </ul>
Note: See TracChangeset
for help on using the changeset viewer.