@@ -210,3 +210,57 @@ <h5 class="text-center custom-green-color-font bold-text">
210210 < input class ="waves-effect waves-light btn-large large-font " type ="submit " value ="Submit ">
211211 </ div >
212212</ form >
213+
214+ < form name ="{{ assign_issue_form_name }} " method ="post "
215+ netlify-honeypot ="bot-field " class ="get-issue-assigned-form display-none "
216+ data-netlify ="true " action ="/ ">
217+ < h5 class ="text-center custom-green-color-font bold-text ">
218+ On which Issue you want to work?
219+ </ h5 >
220+ {% csrf_token %}
221+ {% for field in assign_issue_form %}
222+ < div class ="row ">
223+ < div class ="input-field col s12 ">
224+ {% if field.name == 'user' or field.name == 'hoster' %}
225+ < p > {{ field.label_tag }}</ p >
226+ {% elif field.name != 'requested_user' %}
227+ {{ field.label_tag }}
228+ {% endif %}
229+ {{ field }}
230+ {% if field.help_text %}
231+ < i class ="fa fa-info-circle " aria-hidden ="true "> {{ field.help_text }}</ i >
232+ {% endif %}
233+ </ div >
234+ </ div >
235+ {% endfor %}
236+ < div class ="validation-checkboxes ">
237+ < p >
238+ < label >
239+ < input type ="checkbox " required >
240+ < span > I am a member of {{ org.name }} oragnization.</ span >
241+ </ label >
242+ </ p >
243+ < p >
244+ < label >
245+ < input type ="checkbox " required >
246+ < span > All of the above information provided by me has no false
247+ entries. If so, I am liable of getting blacklisted.</ span >
248+ </ label >
249+ </ p >
250+ < p style ="display: none ">
251+ < label >
252+ < input type ="checkbox " name ="bot-field ">
253+ < span > I am a bot</ span >
254+ </ label >
255+ </ p >
256+ < p >
257+ < strong >
258+ Note: You will receive an email within 24 hrs, if any of the
259+ validation checks are not passed.
260+ </ strong >
261+ </ p >
262+ </ div >
263+ < div class ="apply-flex center-content submit-btn ">
264+ < input class ="waves-effect waves-light btn-large large-font " type ="submit " value ="Submit ">
265+ </ div >
266+ </ form >
0 commit comments