🎬 Dinbilim Websitesindeki Tanıtım Video Serisi
Dinbilim Web Sitesi'nin eğitim vizyonunu anlatan 12 bölümlük video serisi.
' + L.yukleniyor + '
';
}
function renderModal(d) {
var countries = (d.byCountry || []).slice(0, 8);
var devices = d.byDevice || [];
var byHour = d.byHour || [];
var byDay = d.byDay || [];
var topC = countries.length ? (countries[0].visits || 1) : 1;
var devMap = {};
devices.forEach(function(x) { devMap[x.device] = x.visits || 0; });
var topH = byHour.length ? Math.max.apply(null, byHour.map(function(h) { return h.visits || 0; })) : 1;
var html = '
'
+ ''
+ ''
+ ''
+ '
';
html += '' + (d.total || 0) + '
' + L.toplam + '
' + (devMap['Mobil'] || 0) + '
' + L.mobil + '
' + (devMap['Masaustu'] || 0) + '
' + L.masaustu + '
' + L.ulkeler + '
';
if (countries.length) {
countries.forEach(function(c) {
var code = (c.country_code || '').toLowerCase();
var flag = (code && code != '??' && code != 'lo')
? '
'
: '? ';
html += '' + flag + (c.country || '?') + '' + (c.visits || 0) + '
' + bar(c.visits, topC, '#6c7cff') + '' + L.veriYok + '
';
}
html += '' + L.saatler + '
';
var hourArr = Array(24).fill(0);
byHour.forEach(function(h) { if (h.hour >= 0 && h.hour < 24) hourArr[h.hour] = h.visits || 0; });
html += '';
hourArr.forEach(function(v) {
var pct = topH > 0 ? Math.max(4, Math.round(v / topH * 44)) : 4;
html += '';
});
html += '
0006121823
';
if (byDay.length) {
html += '' + L.gunler + '
';
var last7 = byDay.slice(-7);
var topD = Math.max.apply(null, last7.map(function(x) { return x.visits || 0; })) || 1;
last7.forEach(function(r) {
html += '' + (r.day || '').substring(5) + '' + (r.visits || 0) + '
' + bar(r.visits, topD, '#34d399') + '