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