@@ -264,3 +264,155 @@ <h5 class="text-center custom-green-color-font bold-text">
264
264
< input class ="waves-effect waves-light btn-large large-font " type ="submit " value ="Submit ">
265
265
</ div >
266
266
</ form >
267
+
268
+ < form name ="{{ newcomer_promotion_form_name }} " method ="post "
269
+ netlify-honeypot ="bot-field " class ="newcomer-promotion-form display-none "
270
+ data-netlify ="true " action ="/ ">
271
+ < h5 class ="text-center custom-green-color-font bold-text ">
272
+ Newcomer Promotion Request Form
273
+ </ h5 >
274
+ {% csrf_token %}
275
+ < div class ="form-step-div ">
276
+ < h6 class ="bold-text custom-green-color-font "> User Details</ h6 >
277
+ < div class ="row ">
278
+ < div class ="input-field col s12 ">
279
+ < p > {{ newcomer_promotion_form.github_username.label_tag }}</ p >
280
+ {{ newcomer_promotion_form.github_username }}
281
+ </ div >
282
+ </ div >
283
+ < div class ="row ">
284
+ < div class ="input-field col s12 ">
285
+ {{ newcomer_promotion_form.gitlab_user_id.label_tag }}
286
+ {{ newcomer_promotion_form.gitlab_user_id }}
287
+ </ div >
288
+ </ div >
289
+ </ div >
290
+ < div class ="form-step-div ">
291
+ < h6 class ="bold-text custom-green-color-font "> Personal Project Details</ h6 >
292
+ < div class ="row ">
293
+ < div class ="input-field col s12 ">
294
+ {{ newcomer_promotion_form.project_web_url.label_tag }}
295
+ {{ newcomer_promotion_form.project_web_url }}
296
+ < i class ="fa fa-info-circle " aria-hidden ="true "> {{ newcomer_promotion_form.project_web_url.help_text }}</ i >
297
+ </ div >
298
+ </ div >
299
+ < div style ="padding-left: 10px ">
300
+ < h6 class ="bold-text custom-green-color-font "> Files Relative Path
301
+ (to project root)
302
+ </ h6 >
303
+ < div class ="row ">
304
+ < div class ="input-field col s12 ">
305
+ {{ newcomer_promotion_form.build_file_relative_path.label_tag }}
306
+ {{ newcomer_promotion_form.build_file_relative_path }}
307
+ < i class ="fa fa-info-circle " aria-hidden ="true "> {{ newcomer_promotion_form.build_file_relative_path.help_text }}</ i >
308
+ </ div >
309
+ </ div >
310
+ < div class ="row ">
311
+ < div class ="input-field col s12 ">
312
+ {{ newcomer_promotion_form.coafile_relative_path.label_tag }}
313
+ {{ newcomer_promotion_form.coafile_relative_path }}
314
+ < i class ="fa fa-info-circle " aria-hidden ="true "> {{ newcomer_promotion_form.coafile_relative_path.help_text }}</ i >
315
+ </ div >
316
+ </ div >
317
+ </ div >
318
+ < div class ="row ">
319
+ < div class ="input-field col s12 ">
320
+ {{ newcomer_promotion_form.gist_or_snippet_id.label_tag }}
321
+ {{ newcomer_promotion_form.gist_or_snippet_id }}
322
+ < i class ="fa fa-info-circle " aria-hidden ="true "> {{ newcomer_promotion_form.gist_or_snippet_id.help_text }}</ i >
323
+ </ div >
324
+ </ div >
325
+ </ div >
326
+ < div class ="form-step-div ">
327
+ < h6 class ="bold-text custom-green-color-font "> Newcomer Issue Related
328
+ Details</ h6 >
329
+ < div class ="row ">
330
+ < div class ="input-field col s12 ">
331
+ {{ newcomer_promotion_form.newcomer_solved_issue_web_url.label_tag }}
332
+ {{ newcomer_promotion_form.newcomer_solved_issue_web_url }}
333
+ < i class ="fa fa-info-circle " aria-hidden ="true "> {{ newcomer_promotion_form.newcomer_solved_issue_web_url.help_text }}</ i >
334
+ </ div >
335
+ </ div >
336
+ < div class ="row ">
337
+ < div class ="input-field col s12 ">
338
+ {{ newcomer_promotion_form.newcomer_issue_related_pr.label_tag }}
339
+ {{ newcomer_promotion_form.newcomer_issue_related_pr }}
340
+ < i class ="fa fa-info-circle " aria-hidden ="true "> {{ newcomer_promotion_form.newcomer_issue_related_pr.help_text }}</ i >
341
+ </ div >
342
+ </ div >
343
+ < div class ="row ">
344
+ < div class ="input-field col s12 ">
345
+ {{ newcomer_promotion_form.newcomer_issue_pr_reviewed_url.label_tag }}
346
+ {{ newcomer_promotion_form.newcomer_issue_pr_reviewed_url }}
347
+ < i class ="fa fa-info-circle " aria-hidden ="true "> {{ newcomer_promotion_form.newcomer_issue_pr_reviewed_url.help_text }}</ i >
348
+ </ div >
349
+ </ div >
350
+ </ div >
351
+ < div class ="form-step-div ">
352
+ < h6 class ="bold-text custom-green-color-font "> Low Difficulty Issue
353
+ Related Details</ h6 >
354
+ < div class ="row ">
355
+ < div class ="input-field col s12 ">
356
+ {{ newcomer_promotion_form.low_level_solved_issue_web_url.label_tag }}
357
+ {{ newcomer_promotion_form.low_level_solved_issue_web_url }}
358
+ < i class ="fa fa-info-circle " aria-hidden ="true "> {{ newcomer_promotion_form.low_level_solved_issue_web_url.help_text }}</ i >
359
+ </ div >
360
+ </ div >
361
+ < div class ="row ">
362
+ < div class ="input-field col s12 ">
363
+ {{ newcomer_promotion_form.low_level_issue_related_pr.label_tag }}
364
+ {{ newcomer_promotion_form.low_level_issue_related_pr }}
365
+ < i class ="fa fa-info-circle " aria-hidden ="true "> {{ newcomer_promotion_form.low_level_issue_related_pr.help_text }}</ i >
366
+ </ div >
367
+ </ div >
368
+ < div class ="row ">
369
+ < div class ="input-field col s12 ">
370
+ {{ newcomer_promotion_form.low_level_issue_pr_reviewed_url.label_tag }}
371
+ {{ newcomer_promotion_form.low_level_issue_pr_reviewed_url }}
372
+ < i class ="fa fa-info-circle " aria-hidden ="true "> {{ newcomer_promotion_form.low_level_issue_pr_reviewed_url.help_text }}</ i >
373
+ </ div >
374
+ </ div >
375
+ < div class ="row ">
376
+ < div class ="input-field col s12 ">
377
+ {{ newcomer_promotion_form.request_created_by_user }}
378
+ </ div >
379
+ </ div >
380
+ </ div >
381
+ < div class ="validation-checkboxes ">
382
+ < p >
383
+ < label >
384
+ < input type ="checkbox " required >
385
+ < span > I am a member of {{ org.name }} oragnization.</ span >
386
+ </ label >
387
+ </ p >
388
+ < p >
389
+ < label >
390
+ < input type ="checkbox " required >
391
+ < span > I have not submitted this form for more than 3 times. If so, I
392
+ am liable of getting blacklisted!</ span >
393
+ </ label >
394
+ </ p >
395
+ < p >
396
+ < label >
397
+ < input type ="checkbox " required >
398
+ < span > All of the above information provided by me has no false
399
+ entries. If so, I am liable of getting blacklisted.</ span >
400
+ </ label >
401
+ </ p >
402
+ < p style ="display: none ">
403
+ < label >
404
+ < input type ="checkbox " name ="bot-field ">
405
+ < span > I am a bot</ span >
406
+ </ label >
407
+ </ p >
408
+ < p >
409
+ < strong >
410
+ Note: You will receive an email within 24 hrs, if any of the
411
+ validation checks are not passed.
412
+ </ strong >
413
+ </ p >
414
+ </ div >
415
+ < div class ="apply-flex center-content submit-btn ">
416
+ < input class ="waves-effect waves-light btn-large large-font " type ="submit " value ="Submit ">
417
+ </ div >
418
+ </ form >
0 commit comments