Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

helpfulness.html 2.7 KB

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
  1. {% unless enterpriseServerReleases.isOldestReleaseDeprecated and currentVersion contains enterpriseServerReleases.oldestSupported %}
  2. <form class="js-helpfulness f5">
  3. <h2
  4. data-help-start
  5. data-help-yes
  6. data-help-no
  7. class="mb-1 f4"
  8. >
  9. {% data ui.helpfulness.able_to_find %}
  10. </h2>
  11. <p class="f6">
  12. <a href="/github/site-policy/github-privacy-statement">Privacy policy</a>
  13. </p>
  14. <p
  15. class="radio-group"
  16. data-help-start
  17. data-help-yes
  18. data-help-no
  19. >
  20. <input
  21. hidden
  22. id="helpfulness-yes"
  23. type="radio"
  24. name="helpfulness-vote"
  25. value="Yes"
  26. aria-label="{% data ui.helpfulness.yes %}"
  27. />
  28. <label class="btn x-radio-label" for="helpfulness-yes">
  29. {% octicon "thumbsup" height="24" %}
  30. </label>
  31. <input
  32. hidden
  33. id="helpfulness-no"
  34. type="radio"
  35. name="helpfulness-vote"
  36. value="No"
  37. aria-label="{% data ui.helpfulness.no %}"
  38. />
  39. <label class="btn x-radio-label" for="helpfulness-no">
  40. {% octicon "thumbsdown" height="24" %}
  41. </label>
  42. </p>
  43. <p class="color-text-secondary f6" hidden data-help-yes>
  44. {% data ui.helpfulness.yes_feedback %}
  45. </p>
  46. <p class="color-text-secondary f6" hidden data-help-no>
  47. {% data ui.helpfulness.no_feedback %}
  48. </p>
  49. <input
  50. type="text"
  51. class="d-none"
  52. name="helpfulness-token"
  53. aria-hidden="true"
  54. />
  55. <p hidden data-help-no>
  56. <label
  57. class="d-block mb-1 f6"
  58. for="helpfulness-comment"
  59. >
  60. <span>{% data ui.helpfulness.comment_label %}</span>
  61. <span class="text-normal color-text-tertiary float-right ml-1">
  62. {% data ui.helpfulness.optional %}
  63. </span>
  64. </label>
  65. <textarea
  66. class="form-control input-sm width-full"
  67. name="helpfulness-comment"
  68. id="helpfulness-comment"
  69. ></textarea>
  70. </p>
  71. <p>
  72. <label
  73. class="d-block mb-1 f6"
  74. for="helpfulness-email"
  75. hidden
  76. data-help-no
  77. >
  78. {% data ui.helpfulness.email_label %}
  79. <span class="text-normal color-text-tertiary float-right ml-1">
  80. {% data ui.helpfulness.optional %}
  81. </span>
  82. </label>
  83. <input
  84. type="email"
  85. class="form-control input-sm width-full"
  86. name="helpfulness-email"
  87. id="helpfulness-email"
  88. placeholder="{% data ui.helpfulness.email_placeholder %}"
  89. hidden
  90. data-help-yes
  91. data-help-no
  92. />
  93. </p>
  94. <p
  95. class="text-right"
  96. hidden
  97. data-help-yes
  98. data-help-no
  99. >
  100. <button type="submit" class="btn btn-sm">
  101. {% data ui.helpfulness.send %}
  102. </button>
  103. </p>
  104. <p class="color-text-secondary f6" hidden data-help-end>
  105. {% data ui.helpfulness.feedback %}
  106. </p>
  107. </form>
  108. {% endunless %}
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...