ljharb on master
[eslint config] [base] [patch] … [eslint config] [patch] extend … Merge pull request #1996 from r… (compare)
ljharb on master
[editorial] [react] fix typo [eslint config] [*] [deps] upda… (compare)
CALLING ALL JUNIOR and SENIOR DEVS
Hi 👋 I’m researching the topic of
JUNIOR DEVS: challenges when working on a new project,
SENIOR DEVS: challenges when working with code written by someone else
and your feedback/rant would help a lot!
You can share your thoughts with me via survey:
JUNIORS: https://www.surveymonkey.de/r/contribution-new-project-2
SENIORS: https://www.surveymonkey.de/r/code-challenges-3
Big thanks,
Dominika
credit: ["62515f2a-b538-45fd-a99b-dd2b0da585c7", "885113f8-5c93-4590-ac9a-99a9c8d35b8c",…]
0: "62515f2a-b538-45fd-a99b-dd2b0da585c7"
1: "885113f8-5c93-4590-ac9a-99a9c8d35b8c"
2: "c594a9d9-aab7-49ce-9a3f-49779cdbd283"
var value = $("#project44").val();
var valuename = $(this).parents("div").parents("div").parents("div").find("#nameofkey").html();
var valuedes = $(this).parents("div").parents("div").parents("div").find("#desofkey").html();
var valuelest = $(this).parents("div").parents("div").parents("div").find("#desofkey").html();
$("#nametoEdit22").val(valuename)
$("#destoEdit22").val(valuedes)
$("#urltoEdit").val(valueurl)
$("#idtoEdit").val(value)
});
{% for list in keywordList %}
<div class="col-sm-6 col-md-4 col-lg-3 mt-4" >
<div class="card card-inverse card-info" style="background-color: #fcfeff;" >
<h5 v-model="card.value" @change="input(card.value, card.id)" class="card-title" id="nameofkey" style="margin-top: 30px;">{{keywordList[list].namear}}</h5>
<small id="desofkey" style="color: black; margin-bottom: 30px; ">{{keywordList[list].des}}</small>
<!-- <img class="card-img-top" style="margin-left: 100px; margin-top: 15px; margin-bottom: 15px;" width="1" src="{{ url_for('static', filename='images/list.png') }}">-->
<div class="card-block" >
<div class="card-text" style="text-align: center;" >
{% set cpc = [0] %}
{% set volume = [0] %}
{% for single_item in keywordList[list].keywords %}
{% if 'cpc' in keywordList[list].keywords[single_item] %}
{% if volume.append(volume.pop() + keywordList[list].keywords[single_item].volume) %}{% endif %}
{% if cpc.append(cpc.pop() + keywordList[list].keywords[single_item].cpc) %}{% endif %}
{% endif %}
{% endfor %}
<div style="text-align: right; ">
<small>$ {{ cpc[0] }} : التكلفه الكليه </small>
{% if keywordList[list].keywords|length!=0 %}
{% set avecpc = cpc[0]/keywordList[list].keywords|length %}
{% set avevolume = volume[0]/keywordList[list].keywords|length %}
<small> <br> متوسط التكلفة: {{avecpc}} $ / كلمة </small>
<small> <br> متوسط عمليات البحث: {{avevolume}} / كلمة </small>
{% else %}
<small> <br> متوسط التكلفة: 0 $ / كلمة </small>
<small> <br> متوسط عمليات البحث: 0 / كلمة </small>
{% endif %}
<small> <br> {{keywordList[list].keywords|length}} : عدد الكلمات </small>
</div>
</div>
</div>
<div class="card-footer">
<small> {{keywordList[list].date}} : اخر تعديل </small>
<form method="POST" action="/keywordslistkeyword" >
<input id="listkeywords" name="listkeywords" value="{{list}}" style="display: none;"></input>
<input id="project44" name="project44" value="{{projectID}}" style="display: none;" ></input>
{% if keywordList[list].keywords|length!=0 %}
<button id="newpage2" style=" background-color: #49a09d; color: white; margin-left: 20px;"class="btn btn-info float-right btn-sm"> عرض القائمة </button>
{% endif %}
</form>
<div style="text-align: left;">
<a class="edit" title="تعديل" href="#myModal2" style="color: gray;" data-toggle="modal" title="تعديل"><i class="material-icons"></i></a>
<a class="delete" title="حذف" ><i class="material-icons"></i></a>
</div>
</div>
</div>
</div>
{% endfor %}