将 CSS 类添加到以大写字母开头的行

add CSS class to rows that starts with capital letter

本文关键字:大写字母 开头 CSS 添加      更新时间:2023-09-26

我是Javascript和Jquery的新手。我想通过 Jquery 将 CSS 类添加到以大写字母开头的行中。HTML 代码由 Django Admin 自动生成。例如,此行:

<tr class="row1"><td class="action-checkbox"><input class="action-select" name="_selected_action" type="checkbox" value="3641" /></td><th class="field-__str__"><a href="/admin/app/bigram/3641/">Ramës Mapo ---&gt; </a></th></tr>

必须有红色背景颜色。

这是我的源代码,但它不起作用。

<!DOCTYPE html>
<html>
<head>

    <style>
important {background-color:red}'
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
    <script type="text/javascript">
        var t = document.getElementsByClassName("field-__str__").textContent;
        //alert(t);
        if(t.charAt(0) === t.charAt(0).toUpperCase())
        {
            $("field-__str__ tr th a").addClass("important");
        }
    </script>
</head>
<body>
<table id="result_list">
<thead>
<tr>
<th scope="col"  class="action-checkbox-column">
   <div class="text"><span><input type="checkbox" id="action-toggle" /></span></div>
   <div class="clear"></div>
</th>
<th scope="col"  class="column-__str__">
   <div class="text"><span>Bigram</span></div>
   <div class="clear"></div>
</th>
</tr>
</thead>
<tbody>

<tr class="row1"><td class="action-checkbox"><input class="action-select" name="_selected_action" type="checkbox" value="3641" /></td><th class="field-__str__"><a href="/admin/app/bigram/3641/">Ramës Mapo ---&gt; </a></th></tr>

<tr class="row2"><td class="action-checkbox"><input class="action-select" name="_selected_action" type="checkbox" value="3640" /></td><th class="field-__str__"><a href="/admin/app/bigram/3640/">Edi Ramës ---&gt; </a></th></tr>
<tr class="row2"><td class="action-checkbox"><input class="action-select" name="_selected_action" type="checkbox" value="3554" /></td><th class="field-__str__"><a href="/admin/app/bigram/3554/">përmbysi lulishten ---&gt; </a></th></tr>

<tr class="row1"><td class="action-checkbox"><input class="action-select" name="_selected_action" type="checkbox" value="3553" /></td><th class="field-__str__"><a href="/admin/app/bigram/3553/">bredhat përmbysi ---&gt; </a></th></tr>

<tr class="row2"><td class="action-checkbox"><input class="action-select" name="_selected_action" type="checkbox" value="3552" /></td><th class="field-__str__"><a href="/admin/app/bigram/3552/">preu bredhat ---&gt; </a></th></tr>

<tr class="row1"><td class="action-checkbox"><input class="action-select" name="_selected_action" type="checkbox" value="3551" /></td><th class="field-__str__"><a href="/admin/app/bigram/3551/">tregon preu ---&gt; </a></th></tr>

<tr class="row2"><td class="action-checkbox"><input class="action-select" name="_selected_action" type="checkbox" value="3550" /></td><th class="field-__str__"><a href="/admin/app/bigram/3550/">sheshit tregon ---&gt; </a></th></tr>

<tr class="row1"><td class="action-checkbox"><input class="action-select" name="_selected_action" type="checkbox" value="3549" /></td><th class="field-__str__"><a href="/admin/app/bigram/3549/">gjelbërim sheshit ---&gt; </a></th></tr>

<tr class="row2"><td class="action-checkbox"><input class="action-select" name="_selected_action" type="checkbox" value="3548" /></td><th class="field-__str__"><a href="/admin/app/bigram/3548/">Flet gjelbërim ---&gt; </a></th></tr>

<tr class="row1"><td class="action-checkbox"><input class="action-select" name="_selected_action" type="checkbox" value="3547" /></td><th class="field-__str__"><a href="/admin/app/bigram/3547/">bashkie Flet ---&gt; </a></th></tr>

<tr class="row2"><td class="action-checkbox"><input class="action-select" name="_selected_action" type="checkbox" value="3546" /></td><th class="field-__str__"><a href="/admin/app/bigram/3546/">kryetar bashkie ---&gt; </a></th></tr>

<tr class="row1"><td class="action-checkbox"><input class="action-select" name="_selected_action" type="checkbox" value="3545" /></td><th class="field-__str__"><a href="/admin/app/bigram/3545/">Rama kryetar ---&gt; </a></th></tr>

<tr class="row2"><td class="action-checkbox"><input class="action-select" name="_selected_action" type="checkbox" value="3544" /></td><th class="field-__str__"><a href="/admin/app/bigram/3544/">Edi Rama ---&gt; </a></th></tr>

<tr class="row1"><td class="action-checkbox"><input class="action-select" name="_selected_action" type="checkbox" value="3543" /></td><th class="field-__str__"><a href="/admin/app/bigram/3543/">miratoi Edi ---&gt; </a></th></tr>

<tr class="row2"><td class="action-checkbox"><input class="action-select" name="_selected_action" type="checkbox" value="3542" /></td><th class="field-__str__"><a href="/admin/app/bigram/3542/">projektin miratoi ---&gt; </a></th></tr>
</tbody>
</table>
</body>
</html>

谢谢大家!

在选择器 $("field-__str__ tr th a").addClass("important"); 缺少.,也tr不是 .field-__str__ 的子节点。包装javascript在加载document时调用的.ready()内。

    $(function() {
      var t = $(".field-__str__");
      for (var i = 0; i < t.length; i++) {
        var text = t.eq(i).text().trim().charAt(0);
        if (text === text.toUpperCase()) {
          t.eq(i).find("a").addClass("important");
        }
      }
    })

<!DOCTYPE html>
<html>
<head>
  <style>
    .important {
      background-color: red
    }
  </style>
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
  <script type="text/javascript">
    $(function() {
      var t = $(".field-__str__");
      for (var i = 0; i < t.length; i++) {
        var text = t.eq(i).text().trim().charAt(0);
        if (text === text.toUpperCase()) {
          t.eq(i).find("a").addClass("important");
        }
      }
    })
  </script>
</head>
<body>
  <table id="result_list">
    <thead>
      <tr>
        <th scope="col" class="action-checkbox-column">
          <div class="text"><span><input type="checkbox" id="action-toggle" /></span>
          </div>
          <div class="clear"></div>
        </th>
        <th scope="col" class="column-__str__">
          <div class="text"><span>Bigram</span>
          </div>
          <div class="clear"></div>
        </th>
      </tr>
    </thead>
    <tbody>
      <tr class="row1">
        <td class="action-checkbox">
          <input class="action-select" name="_selected_action" type="checkbox" value="3641" />
        </td>
        <th class="field-__str__"><a href="/admin/app/bigram/3641/">Ramës Mapo ---&gt; </a>
        </th>
      </tr>
      <tr class="row2">
        <td class="action-checkbox">
          <input class="action-select" name="_selected_action" type="checkbox" value="3640" />
        </td>
        <th class="field-__str__"><a href="/admin/app/bigram/3640/">Edi Ramës ---&gt; </a>
        </th>
      </tr>
      <tr class="row2">
        <td class="action-checkbox">
          <input class="action-select" name="_selected_action" type="checkbox" value="3554" />
        </td>
        <th class="field-__str__"><a href="/admin/app/bigram/3554/">përmbysi lulishten ---&gt; </a>
        </th>
      </tr>
      <tr class="row1">
        <td class="action-checkbox">
          <input class="action-select" name="_selected_action" type="checkbox" value="3553" />
        </td>
        <th class="field-__str__"><a href="/admin/app/bigram/3553/">bredhat përmbysi ---&gt; </a>
        </th>
      </tr>
      <tr class="row2">
        <td class="action-checkbox">
          <input class="action-select" name="_selected_action" type="checkbox" value="3552" />
        </td>
        <th class="field-__str__"><a href="/admin/app/bigram/3552/">preu bredhat ---&gt; </a>
        </th>
      </tr>
      <tr class="row1">
        <td class="action-checkbox">
          <input class="action-select" name="_selected_action" type="checkbox" value="3551" />
        </td>
        <th class="field-__str__"><a href="/admin/app/bigram/3551/">tregon preu ---&gt; </a>
        </th>
      </tr>
      <tr class="row2">
        <td class="action-checkbox">
          <input class="action-select" name="_selected_action" type="checkbox" value="3550" />
        </td>
        <th class="field-__str__"><a href="/admin/app/bigram/3550/">sheshit tregon ---&gt; </a>
        </th>
      </tr>
      <tr class="row1">
        <td class="action-checkbox">
          <input class="action-select" name="_selected_action" type="checkbox" value="3549" />
        </td>
        <th class="field-__str__"><a href="/admin/app/bigram/3549/">gjelbërim sheshit ---&gt; </a>
        </th>
      </tr>
      <tr class="row2">
        <td class="action-checkbox">
          <input class="action-select" name="_selected_action" type="checkbox" value="3548" />
        </td>
        <th class="field-__str__"><a href="/admin/app/bigram/3548/">Flet gjelbërim ---&gt; </a>
        </th>
      </tr>
      <tr class="row1">
        <td class="action-checkbox">
          <input class="action-select" name="_selected_action" type="checkbox" value="3547" />
        </td>
        <th class="field-__str__"><a href="/admin/app/bigram/3547/">bashkie Flet ---&gt; </a>
        </th>
      </tr>
      <tr class="row2">
        <td class="action-checkbox">
          <input class="action-select" name="_selected_action" type="checkbox" value="3546" />
        </td>
        <th class="field-__str__"><a href="/admin/app/bigram/3546/">kryetar bashkie ---&gt; </a>
        </th>
      </tr>
      <tr class="row1">
        <td class="action-checkbox">
          <input class="action-select" name="_selected_action" type="checkbox" value="3545" />
        </td>
        <th class="field-__str__"><a href="/admin/app/bigram/3545/">Rama kryetar ---&gt; </a>
        </th>
      </tr>
      <tr class="row2">
        <td class="action-checkbox">
          <input class="action-select" name="_selected_action" type="checkbox" value="3544" />
        </td>
        <th class="field-__str__"><a href="/admin/app/bigram/3544/">Edi Rama ---&gt; </a>
        </th>
      </tr>
      <tr class="row1">
        <td class="action-checkbox">
          <input class="action-select" name="_selected_action" type="checkbox" value="3543" />
        </td>
        <th class="field-__str__"><a href="/admin/app/bigram/3543/">miratoi Edi ---&gt; </a>
        </th>
      </tr>
      <tr class="row2">
        <td class="action-checkbox">
          <input class="action-select" name="_selected_action" type="checkbox" value="3542" />
        </td>
        <th class="field-__str__"><a href="/admin/app/bigram/3542/">projektin miratoi ---&gt; </a>
        </th>
      </tr>
    </tbody>
  </table>
</body>
</html>

哪里开始.....

你的代码充满了很多错误:

<style>
    important {background-color:red}'
    ^ no dot, so no class-selector  ^ ????
    /* Should be: */
    .important {background-color:red}
</style>
<script type="text/javascript">
    /* This script is called immediately, before the DOM is build. 
     * So there are no elements at this time. */
    var t = document.getElementsByClassName("field-__str__").textContent;
    /* getElementsByClassName return an array of elements, notice the plural */
    //alert(t);
    if(t.charAt(0) === t.charAt(0).toUpperCase())
    {
        /* Will add it to all a-elements, since there is nothing
         * specific in this selector */
        $("field-__str__ tr th a").addClass("important");
    }
</script>

更好:

<script type="text/javascript">
    // Everything within $(function() { ... }); will be called
    // when the dom is ready
    $(function() {
        // For each element with class '.field__str__', do
        $('.field-__str__').each(function(index, elem) {
            var t = elem.textContent;
            if(t.charAt(0) === t.charAt(0).toUpperCase())
            {
                $(elem).find('a').addClass("important");
            }               
        });
    });
</script>

小提琴

Vanilla JS 版本:

以下是<script>片段:

var t = document.querySelectorAll(".field-__str__");
Array.prototype.forEach.call(t, function(el) {
  if (el.textContent.charAt(0) === el.textContent.charAt(0).toUpperCase())
    el.classList.add("important");
});

这是<style>组件:

.important {
  background-color: red
}

需要注意的几点:

  • 您的important类前面没有.,需要指定 重要 是类而不是元素。因此,它已被更正为 .important .

  • 将脚本移动到结束正文标记的右边,因为这是防止渲染阻塞的标准做法。

  • vanilla JS,所以如果这是你代码中唯一的jQuery,你可以为自己和其他人节省几个字节:)。

<!DOCTYPE html>
<html>
<head>
  <style>
    .important {
      background-color: red
    }
  </style>
</head>
<body>
  <table id="result_list">
    <thead>
      <tr>
        <th scope="col" class="action-checkbox-column">
          <div class="text"><span><input type="checkbox" id="action-toggle" /></span>
          </div>
          <div class="clear"></div>
        </th>
        <th scope="col" class="column-__str__">
          <div class="text"><span>Bigram</span>
          </div>
          <div class="clear"></div>
        </th>
      </tr>
    </thead>
    <tbody>
      <tr class="row1">
        <td class="action-checkbox">
          <input class="action-select" name="_selected_action" type="checkbox" value="3641" />
        </td>
        <th class="field-__str__"><a href="/admin/app/bigram/3641/">Ramës Mapo ---&gt; </a>
        </th>
      </tr>
      <tr class="row2">
        <td class="action-checkbox">
          <input class="action-select" name="_selected_action" type="checkbox" value="3640" />
        </td>
        <th class="field-__str__"><a href="/admin/app/bigram/3640/">Edi Ramës ---&gt; </a>
        </th>
      </tr>
      <tr class="row2">
        <td class="action-checkbox">
          <input class="action-select" name="_selected_action" type="checkbox" value="3554" />
        </td>
        <th class="field-__str__"><a href="/admin/app/bigram/3554/">përmbysi lulishten ---&gt; </a>
        </th>
      </tr>
      <tr class="row1">
        <td class="action-checkbox">
          <input class="action-select" name="_selected_action" type="checkbox" value="3553" />
        </td>
        <th class="field-__str__"><a href="/admin/app/bigram/3553/">bredhat përmbysi ---&gt; </a>
        </th>
      </tr>
      <tr class="row2">
        <td class="action-checkbox">
          <input class="action-select" name="_selected_action" type="checkbox" value="3552" />
        </td>
        <th class="field-__str__"><a href="/admin/app/bigram/3552/">preu bredhat ---&gt; </a>
        </th>
      </tr>
      <tr class="row1">
        <td class="action-checkbox">
          <input class="action-select" name="_selected_action" type="checkbox" value="3551" />
        </td>
        <th class="field-__str__"><a href="/admin/app/bigram/3551/">tregon preu ---&gt; </a>
        </th>
      </tr>
      <tr class="row2">
        <td class="action-checkbox">
          <input class="action-select" name="_selected_action" type="checkbox" value="3550" />
        </td>
        <th class="field-__str__"><a href="/admin/app/bigram/3550/">sheshit tregon ---&gt; </a>
        </th>
      </tr>
      <tr class="row1">
        <td class="action-checkbox">
          <input class="action-select" name="_selected_action" type="checkbox" value="3549" />
        </td>
        <th class="field-__str__"><a href="/admin/app/bigram/3549/">gjelbërim sheshit ---&gt; </a>
        </th>
      </tr>
      <tr class="row2">
        <td class="action-checkbox">
          <input class="action-select" name="_selected_action" type="checkbox" value="3548" />
        </td>
        <th class="field-__str__"><a href="/admin/app/bigram/3548/">Flet gjelbërim ---&gt; </a>
        </th>
      </tr>
      <tr class="row1">
        <td class="action-checkbox">
          <input class="action-select" name="_selected_action" type="checkbox" value="3547" />
        </td>
        <th class="field-__str__"><a href="/admin/app/bigram/3547/">bashkie Flet ---&gt; </a>
        </th>
      </tr>
      <tr class="row2">
        <td class="action-checkbox">
          <input class="action-select" name="_selected_action" type="checkbox" value="3546" />
        </td>
        <th class="field-__str__"><a href="/admin/app/bigram/3546/">kryetar bashkie ---&gt; </a>
        </th>
      </tr>
      <tr class="row1">
        <td class="action-checkbox">
          <input class="action-select" name="_selected_action" type="checkbox" value="3545" />
        </td>
        <th class="field-__str__"><a href="/admin/app/bigram/3545/">Rama kryetar ---&gt; </a>
        </th>
      </tr>
      <tr class="row2">
        <td class="action-checkbox">
          <input class="action-select" name="_selected_action" type="checkbox" value="3544" />
        </td>
        <th class="field-__str__"><a href="/admin/app/bigram/3544/">Edi Rama ---&gt; </a>
        </th>
      </tr>
      <tr class="row1">
        <td class="action-checkbox">
          <input class="action-select" name="_selected_action" type="checkbox" value="3543" />
        </td>
        <th class="field-__str__"><a href="/admin/app/bigram/3543/">miratoi Edi ---&gt; </a>
        </th>
      </tr>
      <tr class="row2">
        <td class="action-checkbox">
          <input class="action-select" name="_selected_action" type="checkbox" value="3542" />
        </td>
        <th class="field-__str__"><a href="/admin/app/bigram/3542/">projektin miratoi ---&gt; </a>
        </th>
      </tr>
    </tbody>
  </table>
  <script>
    var t = document.querySelectorAll(".field-__str__");
    Array.prototype.forEach.call(t, function(el) {
      if (el.textContent.charAt(0) === el.textContent.charAt(0).toUpperCase())
        el.classList.add("important");
    });
  </script>
</body>
</html>

您可以使用

jquery each函数读取所有tr's,如果内容以大写字母开头,则在其中找到a标签,然后添加类important

像这样:

$('#result_list > tbody  > tr').each(function() {
var t = $(this).text();
if(t.charAt(0) === t.charAt(0).toUpperCase()){
    $(this).find('a').addClass("important");
}
});
.important{
  background-color:red;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<table id="result_list">
    <thead>
        <tr>
            <th scope="col"  class="action-checkbox-column">
                <div class="text"><span><input type="checkbox" id="action-toggle" /></span></div>
                <div class="clear"></div>
            </th>
            <th scope="col"  class="column-__str__">
                <div class="text"><span>Bigram</span></div>
                <div class="clear"></div>
            </th>
        </tr>
    </thead>
<tbody style="text-align:left;">
<tr class="row1"><td class="action-checkbox"><input class="action-select" name="_selected_action" type="checkbox" value="3641" /></td><th class="field-__str__"><a href="/admin/app/bigram/3641/">Ramës Mapo ---&gt; </a></th></tr>
<tr class="row2"><td class="action-checkbox"><input class="action-select" name="_selected_action" type="checkbox" value="3640" /></td><th class="field-__str__"><a href="/admin/app/bigram/3640/">Edi Ramës ---&gt; </a></th></tr>
<tr class="row2"><td class="action-checkbox"><input class="action-select" name="_selected_action" type="checkbox" value="3554" /></td><th class="field-__str__"><a href="/admin/app/bigram/3554/">përmbysi lulishten ---&gt; </a></th></tr>
<tr class="row1"><td class="action-checkbox"><input class="action-select" name="_selected_action" type="checkbox" value="3553" /></td><th class="field-__str__"><a href="/admin/app/bigram/3553/">bredhat përmbysi ---&gt; </a></th></tr>
<tr class="row2"><td class="action-checkbox"><input class="action-select" name="_selected_action" type="checkbox" value="3552" /></td><th class="field-__str__"><a href="/admin/app/bigram/3552/">preu bredhat ---&gt; </a></th></tr>
<tr class="row1"><td class="action-checkbox"><input class="action-select" name="_selected_action" type="checkbox" value="3551" /></td><th class="field-__str__"><a href="/admin/app/bigram/3551/">tregon preu ---&gt; </a></th></tr>
<tr class="row2"><td class="action-checkbox"><input class="action-select" name="_selected_action" type="checkbox" value="3550" /></td><th class="field-__str__"><a href="/admin/app/bigram/3550/">sheshit tregon ---&gt; </a></th></tr>
<tr class="row1"><td class="action-checkbox"><input class="action-select" name="_selected_action" type="checkbox" value="3549" /></td><th class="field-__str__"><a href="/admin/app/bigram/3549/">gjelbërim sheshit ---&gt; </a></th></tr>
<tr class="row2"><td class="action-checkbox"><input class="action-select" name="_selected_action" type="checkbox" value="3548" /></td><th class="field-__str__"><a href="/admin/app/bigram/3548/">Flet gjelbërim ---&gt; </a></th></tr>
<tr class="row1"><td class="action-checkbox"><input class="action-select" name="_selected_action" type="checkbox" value="3547" /></td><th class="field-__str__"><a href="/admin/app/bigram/3547/">bashkie Flet ---&gt; </a></th></tr>
<tr class="row2"><td class="action-checkbox"><input class="action-select" name="_selected_action" type="checkbox" value="3546" /></td><th class="field-__str__"><a href="/admin/app/bigram/3546/">kryetar bashkie ---&gt; </a></th></tr>
<tr class="row1"><td class="action-checkbox"><input class="action-select" name="_selected_action" type="checkbox" value="3545" /></td><th class="field-__str__"><a href="/admin/app/bigram/3545/">Rama kryetar ---&gt; </a></th></tr>
<tr class="row2"><td class="action-checkbox"><input class="action-select" name="_selected_action" type="checkbox" value="3544" /></td><th class="field-__str__"><a href="/admin/app/bigram/3544/">Edi Rama ---&gt; </a></th></tr>
<tr class="row1"><td class="action-checkbox"><input class="action-select" name="_selected_action" type="checkbox" value="3543" /></td><th class="field-__str__"><a href="/admin/app/bigram/3543/">miratoi Edi ---&gt; </a></th></tr>
<tr class="row2"><td class="action-checkbox"><input class="action-select" name="_selected_action" type="checkbox" value="3542" /></td><th class="field-__str__"><a href="/admin/app/bigram/3542/">projektin miratoi ---&gt; </a></th></tr>
</tbody>
</table>

你可以使用纯 js 来实现这一点。

获取第一个字母的ascii值,并检查它是否为大写字母。

var table = document.getElementById('result_list');
var rows = table.rows;
for(i=0; i<rows.length; i++) {
  var f_char = rows[i].textContent.charCodeAt(0);
  if (f_char >= 65 && f_char <= 90) {
    rows[i].classList.add("important");
  }
}
.important {
  background-color:red
}
<!DOCTYPE html>
<html>
<head>
    <style>
important {background-color:red}'
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
    <script type="text/javascript">
        var t = document.getElementsByClassName("field-__str__").textContent;
        //alert(t);
        if(t.charAt(0) === t.charAt(0).toUpperCase())
        {
            $("field-__str__ tr th a").addClass("important");
        }
    </script>
</head>
<body>
<table id="result_list">
<thead>
<tr>
<th scope="col"  class="action-checkbox-column">
   <div class="text"><span><input type="checkbox" id="action-toggle" /></span></div>
   <div class="clear"></div>
</th>
<th scope="col"  class="column-__str__">
   <div class="text"><span>Bigram</span></div>
   <div class="clear"></div>
</th>
</tr>
</thead>
<tbody>
<tr class="row1"><td class="action-checkbox"><input class="action-select" name="_selected_action" type="checkbox" value="3641" /></td><th class="field-__str__"><a href="/admin/app/bigram/3641/">Ramës Mapo ---&gt; </a></th></tr>
<tr class="row2"><td class="action-checkbox"><input class="action-select" name="_selected_action" type="checkbox" value="3640" /></td><th class="field-__str__"><a href="/admin/app/bigram/3640/">Edi Ramës ---&gt; </a></th></tr>
<tr class="row2"><td class="action-checkbox"><input class="action-select" name="_selected_action" type="checkbox" value="3554" /></td><th class="field-__str__"><a href="/admin/app/bigram/3554/">përmbysi lulishten ---&gt; </a></th></tr>
<tr class="row1"><td class="action-checkbox"><input class="action-select" name="_selected_action" type="checkbox" value="3553" /></td><th class="field-__str__"><a href="/admin/app/bigram/3553/">bredhat përmbysi ---&gt; </a></th></tr>
<tr class="row2"><td class="action-checkbox"><input class="action-select" name="_selected_action" type="checkbox" value="3552" /></td><th class="field-__str__"><a href="/admin/app/bigram/3552/">preu bredhat ---&gt; </a></th></tr>
<tr class="row1"><td class="action-checkbox"><input class="action-select" name="_selected_action" type="checkbox" value="3551" /></td><th class="field-__str__"><a href="/admin/app/bigram/3551/">tregon preu ---&gt; </a></th></tr>
<tr class="row2"><td class="action-checkbox"><input class="action-select" name="_selected_action" type="checkbox" value="3550" /></td><th class="field-__str__"><a href="/admin/app/bigram/3550/">sheshit tregon ---&gt; </a></th></tr>
<tr class="row1"><td class="action-checkbox"><input class="action-select" name="_selected_action" type="checkbox" value="3549" /></td><th class="field-__str__"><a href="/admin/app/bigram/3549/">gjelbërim sheshit ---&gt; </a></th></tr>
<tr class="row2"><td class="action-checkbox"><input class="action-select" name="_selected_action" type="checkbox" value="3548" /></td><th class="field-__str__"><a href="/admin/app/bigram/3548/">Flet gjelbërim ---&gt; </a></th></tr>
<tr class="row1"><td class="action-checkbox"><input class="action-select" name="_selected_action" type="checkbox" value="3547" /></td><th class="field-__str__"><a href="/admin/app/bigram/3547/">bashkie Flet ---&gt; </a></th></tr>
<tr class="row2"><td class="action-checkbox"><input class="action-select" name="_selected_action" type="checkbox" value="3546" /></td><th class="field-__str__"><a href="/admin/app/bigram/3546/">kryetar bashkie ---&gt; </a></th></tr>
<tr class="row1"><td class="action-checkbox"><input class="action-select" name="_selected_action" type="checkbox" value="3545" /></td><th class="field-__str__"><a href="/admin/app/bigram/3545/">Rama kryetar ---&gt; </a></th></tr>
<tr class="row2"><td class="action-checkbox"><input class="action-select" name="_selected_action" type="checkbox" value="3544" /></td><th class="field-__str__"><a href="/admin/app/bigram/3544/">Edi Rama ---&gt; </a></th></tr>
<tr class="row1"><td class="action-checkbox"><input class="action-select" name="_selected_action" type="checkbox" value="3543" /></td><th class="field-__str__"><a href="/admin/app/bigram/3543/">miratoi Edi ---&gt; </a></th></tr>
<tr class="row2"><td class="action-checkbox"><input class="action-select" name="_selected_action" type="checkbox" value="3542" /></td><th class="field-__str__"><a href="/admin/app/bigram/3542/">projektin miratoi ---&gt; </a></th></tr>
</tbody>
</table>
</body>
</html>