Новости Joomla

0 Пользователей и 1 Гость просматривают эту тему.
  • 41 Ответов
  • 2994 Просмотров
*

meiram077

  • Захожу иногда
  • 225
  • 0 / 0
Как реализовать такое? AdsManager 2.6.5



Так было бы красивее!  ^-^
« Последнее редактирование: 22.01.2014, 01:29:45 от meiram077 »
*

meiram077

  • Захожу иногда
  • 225
  • 0 / 0
Решение должно быть полюбому, но это надо шарить.
*

kreker92

  • Захожу иногда
  • 393
  • 18 / 0
Можно скриптом добавлять.
Подойдет решение?
Все вопросы и предложения на почту.
*

meiram077

  • Захожу иногда
  • 225
  • 0 / 0
*

kreker92

  • Захожу иногда
  • 393
  • 18 / 0
Подойдет

Ну, типо вот этого:
Код: javascript
if (!$('.adsManagerTable td').text().length) {
$('.adsManagerTable td').text('-');
}
Все вопросы и предложения на почту.
*

meiram077

  • Захожу иногда
  • 225
  • 0 / 0
А в каком файле это вставлять?
*

kreker92

  • Захожу иногда
  • 393
  • 18 / 0
'.adsManagerTable td' - это css-путь до каждой ячейки таблицы. Какой там на самом деле я не знаю. ПОсмотрите.
Либо находите где шаблон этого компонента либо создаете файл с расширением js и подключаете в header в index.php
в него суете скрипт в таком виде.
Код: javascript
$( document ).ready(function() {
if (!$('.adsManagerTable td').text().length) {
$('.adsManagerTable td').text('-');
}
});
Все вопросы и предложения на почту.
*

meiram077

  • Захожу иногда
  • 225
  • 0 / 0
Спасибо я попробую! Позже отпишусь что  да как!
*

meiram077

  • Захожу иногда
  • 225
  • 0 / 0
Вообще в CSS у меня путь до каждой ячейки вроде как
table.adsmanager_table td

Полностью там так
table.adsmanager_table td {
 border: 1px solid #ffffff;
}


Что-то у меня нифига не получайтся кто поможет очень надо!

А с этим не получается не понятно как-то, по совету kreker92
$( document ).ready(function() {
   if (!$('.adsManagerTable td').text().length) {
      $('.adsManagerTable td').text('-');
   }
});
« Последнее редактирование: 16.01.2014, 22:53:08 от meiram077 »
*

meiram077

  • Захожу иногда
  • 225
  • 0 / 0
В нете против пустых ячеек нашел только
empty-cells:hide;

Но оно скрывает полностью ячейку поидее. А мне не это нужно. Мне нужно тире.

« Последнее редактирование: 16.01.2014, 22:53:26 от meiram077 »
*

Shustry

  • Гуру
  • 6434
  • 745 / 3
jQuery надо подключить, чтобы работал скрипт kreker92
*

kreker92

  • Захожу иногда
  • 393
  • 18 / 0
Я написал пример. Нужные классы и теги вы можете вставить самостоятельно.
П.С. Да, jQuery подключить было бы неплохо.
Все вопросы и предложения на почту.
*

Fedor Vlasenko

  • Живу я здесь
  • 3845
  • 733 / 7
  • https://fedor-vlasenko.web.app
http://learn.javascript.ru/play/zmaQE
вариант
Vanilla JS
http://learn.javascript.ru/play/JT5aU

kreker92, http://www.w3.org/TR/css3-selectors/#selectors
таблица селекторов, для jQuery достаточно было. Но зачем
Код: javascript
jQuery(function($){
  $('table.adsmanager_table').find('td:empty').text('-');
});
*

meiram077

  • Захожу иногда
  • 225
  • 0 / 0
В какую именно папку и в какой именно файл вставить код, если использовать jquery?
joomla-2.5 adsm-2.6.5
*

kreker92

  • Захожу иногда
  • 393
  • 18 / 0
Желательно в папку шаблона в папку js или javascript
И подключить в head в index.php шаблона.
Подключается как любой другой уже подключенный там файл.
Все вопросы и предложения на почту.
*

meiram077

  • Захожу иногда
  • 225
  • 0 / 0
Какого шаблона? Я ведь использую AdsManager, таблица ведь от этого компонента. У компонента нет шаблона.
*

kreker92

  • Захожу иногда
  • 393
  • 18 / 0
Все вопросы и предложения на почту.
*

meiram077

  • Захожу иногда
  • 225
  • 0 / 0
Это код файла index.php шаблона. Куда и какой код втыкнуть чтоб таблица отображалась с черточкой?
Спойлер
[свернуть]
« Последнее редактирование: 18.01.2014, 01:35:49 от meiram077 »
*

meiram077

  • Захожу иногда
  • 225
  • 0 / 0
Цитировать
Желательно в папку шаблона в папку js или javascript

А таких папок там нет, есть только папки css, html, images и language.
*

kreker92

  • Захожу иногда
  • 393
  • 18 / 0
Все вопросы и предложения на почту.
*

meiram077

  • Захожу иногда
  • 225
  • 0 / 0
подведем итог, я из всего изложенного понял так.

В этой директории создаю папку "js":
X:\home\localhost\www\сайт\templates\шаблон

В нее переношу файл index.php с папки ...\шаблон :
Цитировать
Цитировать
В какую именно папку и в какой именно файл вставить код, если использовать jquery?
joomla-2.5 adsm-2.6.5
Цитировать
Желательно в папку шаблона в папку js или javascript
И подключить в head в index.php шаблона.
Подключается как любой другой уже подключенный там файл.

Подключаю jquery и правлю файл index.php

Если да то что изменить в файле index.php
Код
<?php
defined('_JEXEC') or die;
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>" >
<head>
<!--
author: raduga http://mambasana.ru, http://joomlafabric.com
copyright: GNU/GPL
-->
<jdoc:include type="head" />
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/system/css/general.css" type="text/css" />
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/system/css/system.css" type="text/css" />
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/bizblue/css/template.css" type="text/css" />
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/bizblue/css/<?php echo $this->params->get('width'); ?>.css" type="text/css" />
<?php if($this->params->get('protect')) : ?>
<script language="javascript" type="text/javascript" src="<?php echo $this->baseurl ?>/templates/bizblue/protect.js"></script>
<?php endif; ?>
</head>

<body id="body_bg">
<?php require_once(dirname(__FILE__).'/css/system.php'); ?>
     <table class="fw"  border="0" align="center" cellpadding="0" cellspacing="0">
         <tr>
               <td width="169"  align="left"  valign="middle">

                 

                 

                </td>

<td>&nbsp;</td>
                 <td  width="601" align="center" class="topnav" valign="bottom">

                      <?php if($this->countModules('user3') or $this->countModules('position-1') ) : ?>
                    <div>
                      <jdoc:include type="modules" name="user3" />
                      <jdoc:include type="modules" name="position-1" />
                    </div>
                      <?php endif; ?>

                 </td>
         
        </tr>
  </table> 
  <table class="header" border="0" align="center" cellpadding="0" cellspacing="0">
        <tr>
<td  align="center" class="logoheader">
<?php if($this->params->get('showLOGO')) { ?>
<?php } ?>
</td>
               
        </tr>
  </table>

 
<table class="header" border="0" align="center" cellpadding="0" cellspacing="0" >
<tr>
<td class="top1">
<div id="top1">
<div class="pw">
<?php if($this->countModules('breadcrumb') or $this->countModules('position-2') ) : ?>
<jdoc:include type="module" name="breadcrumb" />
<jdoc:include type="modules" name="position-2" />
<?php endif; ?>
</div>
<div class="date"><?php echo JHTML::Date( 'now', 'd | m | Y' ); ?></div>
</div>
</td>
</tr>
</table>

<div id="mainconteiner">

<?php

if ($this->countModules( "top1" )>0) {
$modwidth = 100;
}
                                           
if ($this->countModules( "top2" )>0) {
$modwidth = 100;
}
if ($this->countModules( "top3" )>0) {
$modwidth = 100;
}
if ($this->countModules( "top1" )>0 && $this->countModules( "top2" )>0)  {
$modwidth = 50;
}
if ($this->countModules( "top1" )>0 && $this->countModules( "top3" )>0)  {
$modwidth = 50;
}
if ($this->countModules( "top2" )>0 && $this->countModules( "top3" )>0)  {
$modwidth = 50;
}

if ($this->countModules( "top1" )>0 && $this->countModules( "top2" )>0 && $this->countModules( "top3" )>0)  {
$modwidth = 33;
}

?>


         
<?php if ($this->countModules( "top1" )>0 || $this->countModules( "top2" )>0 || $this->countModules( "top3" )>0) : ?>

<div class="clear"></div>
<div id="topmod">
<table border="0" align="center" cellpadding="0" cellspacing="0" width="100%">
 <tr>
<?php if($this->countModules('top1')) : ?>
                        <td valign="top" width="<?php echo $modwidth; ?>%" >
                       
                        <jdoc:include type="modules" name="top1" style="table"/>
                       
                        </td>
<?php endif; ?>

<?php if ($this->countModules( "top1" )>0 && $this->countModules( "top2" )>0 || $this->countModules( "top1" )>0 && $this->countModules( "top3" )>0) : ?>

                       <td class="tm"><div class="mod"></div></td>
<?php endif; ?>

<?php if($this->countModules('top2')) : ?>
                    <td valign="top" width="<?php echo $modwidth; ?>%" >
                   
                    <jdoc:include type="modules" name="top2" style="table"/>
                   
                    </td>
<?php endif; ?>

<?php if ($this->countModules( "top2" )>0 && $this->countModules( "top3" )>0) : ?>

                       <td class="tm"><div class="mod"></div></td>
<?php endif; ?>

<?php if($this->countModules('top3')) : ?>
                    <td valign="top" width="<?php echo $modwidth; ?>%" >
                   
                    <jdoc:include type="modules" name="top3" style="table"/>
                   
                    </td>
<?php endif; ?>
 </tr>
 </table>
</div>
<div class="clear" style="border-bottom:1px solid #cccccc;"></div>
                   
<?php endif; ?>


<table class="maincontent"  border="0" align="center" cellpadding="0" cellspacing="0">
          <tr>
                 <?php if($this->countModules('left') or $this->countModules('position-7') ) : ?>
             <td valign="top" class="lcol">
                 <div class="leftrow">
                  <jdoc:include type="modules" name="left" style="table"/>
                  <jdoc:include type="modules" name="position-7" style="table" />
                 </div>
             </td>
<td class="bgline" ><img  src="<?php echo $this->baseurl ?>/templates/bizblue/images/px.gif" alt="" width="7" border="0"/></td>
    <?php else : ?>
<td class="bgnoleft" ><img  src="<?php echo $this->baseurl ?>/templates/bizblue/images/px.gif" alt="" width="4" border="0"/></td>
<?php endif; ?>                   
           


             <td valign="top"  width="100%" >
  <table width="100%"  border="0" cellspacing="0" cellpadding="0" style="border-top: 5px solid #ffffff;">

<?php if ($this->getBuffer('message')) : ?>
<jdoc:include type="message" />
<?php endif; ?>

<?php if($this->countModules('top') or  $this->countModules('newsflashload') ) : ?>
             
          <tr valign="top" >
                   <td colspan="3">
                        <div>
<jdoc:include type="modules" name="top" style="table" />
<jdoc:include type="modules" name="newsflashload" style="table" />
                        </div>
                   </td>
          </tr>
               <tr><td colspan="3"></td></tr>
<?php endif; ?>



<?php if ($this->countModules( "user1" )>0) {
$modtopwidth = 100;
}
                                           
                                          if ($this->countModules( "user2" )>0) {
$modtopwidth = 100;
}

                                          if ($this->countModules( "user1" )>0 && $this->countModules( "user2" )>0)  {
$modtopwidth = 50;
}

?>

         
<?php if ($this->countModules( "user1" )>0 || $this->countModules( "user2" )>0) : ?>
 <tr>
<?php if($this->countModules('user1')) : ?>
                        <td valign="top" width="<?php echo $modtopwidth; ?>%" >
                       
                        <jdoc:include type="modules" name="user1" style="table"/>
                       
                        </td>
<?php endif; ?>

<?php if ($this->countModules( "user1" )>0 && $this->countModules( "user2" )>0) : ?>

                       <td><div class="mod"></div></td>
<?php endif; ?>

<?php if($this->countModules('user2')) : ?>
                    <td valign="top" width="<?php echo $modtopwidth; ?>%" >
                    <jdoc:include type="modules" name="user2" style="table"/>
                    </td>
<?php endif; ?>
 </tr>
                   
                   <tr><td colspan="3"></td></tr>
<?php endif; ?>


<tr align="left" valign="top">
<td colspan="3" style="border-top: 3px solid #ffffff; padding: 3px;">
<div class="main">
<?php if($this->params->get('showComponent')) : ?>
<jdoc:include type="component" />
<?php endif; ?>
</div>
</td>
         
</tr>

<?php if($this->countModules('bottom')) : ?>
                      <tr>
                      <td colspan="3" valign="top" style="padding-top: 3px;">

                      <div>
                      <jdoc:include type="modules" name="bottom" style="table"/>
                      </div>

                      </td>
                      </tr>
<?php endif; ?>

<?php if($this->countModules('bannersload')) : ?>
                      <tr>
                      <td colspan="3" valign="top" style="padding:10px 0;text-align: center;">
                      <div align="center">
                      <jdoc:include type="modules" name="bannersload" style="raw"/>
                      </div>
                      </td>
                      </tr>
<?php endif; ?>


  </table>
 
  </td>

                     
<?php if ($this->countModules('right') or $this->countModules('position-3') or $this->countModules('position-4')) : ?>
<td class="bgline" ><img  src="<?php echo $this->baseurl ?>/templates/bizblue/images/px.gif" alt="" width="7" border="0"/></td>
<td valign="top" class="rcol">
                  <div class="rightrow">
<jdoc:include type="modules" name="right" style="table"/>
<jdoc:include type="modules" name="position-3" style="table"/>
<jdoc:include type="modules" name="position-4" style="table"/>
                  </div>
                  </td>
<?php else : ?>
<td class="bgnoright" ><img  src="<?php echo $this->baseurl ?>/templates/bizblue/images/px.gif" alt="" width="4" border="0"/></td>
<?php endif; ?>
       </tr>
</table>



<?php

if ($this->countModules( "bottom1" )>0) {
$modwidth = 100;
}
                                           
if ($this->countModules( "bottom2" )>0) {
$modwidth = 100;
}
if ($this->countModules( "bottom3" )>0) {
$modwidth = 100;
}
if ($this->countModules( "bottom1" )>0 && $this->countModules( "bottom2" )>0)  {
$modwidth = 50;
}
if ($this->countModules( "bottom1" )>0 && $this->countModules( "bottom3" )>0)  {
$modwidth = 50;
}
if ($this->countModules( "bottom2" )>0 && $this->countModules( "bottom3" )>0)  {
$modwidth = 50;
}

if ($this->countModules( "bottom1" )>0 && $this->countModules( "bottom2" )>0 && $this->countModules( "bottom3" )>0)  {
$modwidth = 33;
}

?>

         
<?php if ($this->countModules( "bottom1" )>0 || $this->countModules( "bottom2" )>0 || $this->countModules( "bottom3" )>0) : ?>

<div class="clear" style="border-top:1px solid #cccccc;"></div>

<div id="botmod">
<table border="0" align="center" cellpadding="0" cellspacing="0" width="100%">
 <tr>
<?php if($this->countModules('bottom1')) : ?>
                        <td valign="top" class="contentmod" width="<?php echo $modwidth; ?>%" >
                       
                        <jdoc:include type="modules" name="bottom1" style="table"/>
                       
                        </td>
<?php endif; ?>

<?php if ($this->countModules( "bottom1" )>0 && $this->countModules( "bottom2" )>0 || $this->countModules( "bottom2" )>0 && $this->countModules( "bottom3" )>0) : ?>

                       <td class="tm"><div class="mod"></div></td>
<?php endif; ?>

<?php if($this->countModules('bottom2')) : ?>
                    <td valign="top" class="contentmod" width="<?php echo $modwidth; ?>%" >
                   
                    <jdoc:include type="modules" name="bottom2" style="table"/>
                   
                    </td>
<?php endif; ?>

<?php if ($this->countModules( "bottom2" )>0 && $this->countModules( "bottom3" )>0) : ?>

                       <td class="tm"><div class="mod"></div></td>
<?php endif; ?>

<?php if($this->countModules('bottom3')) : ?>
                    <td valign="top" class="contentmod" width="<?php echo $modwidth; ?>%" >
                   
                    <jdoc:include type="modules" name="bottom3" style="table"/>
                   
                    </td>
<?php endif; ?>
 </tr>
 </table>
 </div>


</div>
                   
<div class="clear"></div>
       
<table class="foot"  align="center" border="0" cellspacing="0" cellpadding="0" width="95%">
<?php else : ?>
</div>
<table class="foot" align="center" border="0" cellspacing="0" cellpadding="0" width="100%">
<?php endif; ?>
                <tr>



                                     <td  width="100%"  align="center" class="footer" >
<?php if($this->countModules('footertext')) : ?>
<div id="footertext"><jdoc:include type="modules" name="footertext" /></div>
<?php endif; ?>
</body>
</html>
*

kreker92

  • Захожу иногда
  • 393
  • 18 / 0
В этой директории создаю папку "js":
X:\home\localhost\www\сайт\templates\шаблон
да
В нее переношу файл index.php с папки ...\шаблон :
что?
не надо никуда переносить index.php он лежит там где нужно
Подключаю jquery и правлю файл index.php
Если да то что изменить в файле index.php
вот эту штуку дублируете
Код: html4strict
<script language="javascript" type="text/javascript" src="<?php echo $this->baseurl ?>/templates/bizblue/protect.js"></script>
только вынесите из условного оператора if.
И изменяете на такую штуку
Код: html4strict
<script language="javascript" type="text/javascript" src="<?php echo $this->baseurl ?>/templates/bizblue/js/jqeury.min.js"></script>
Эта запись означает, что в вашем шаблоне сайта bizblue в папке js лежит файл jquery.min.js. Это и есть jQuery.
Все вопросы и предложения на почту.
*

meiram077

  • Захожу иногда
  • 225
  • 0 / 0
Не получилось.
-Я создал папку "js", закинул туда файл jquery.min.js в таков виде:
Код
$( document ).ready(function() {
if (!$('table.adsmanager_table td').text().length) {
$('table.adsmanager_table td').text('-');
}
});

-В файле index.php заменил эту строку
Код
<script language="javascript" type="text/javascript" src="<?php echo $this->baseurl ?>/templates/bizblue/protect.js"></script>
на эту
Код
<script language="javascript" type="text/javascript" src="<?php echo $this->baseurl ?>/templates/bizblue/js/jqeury.min.js"></script>

Т.е. кусок кода выглядит сейчас так:
Код
<head>
<!--
author: raduga http://mambasana.ru, http://joomlafabric.com
copyright: GNU/GPL
-->
<jdoc:include type="head" />
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/system/css/general.css" type="text/css" />
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/system/css/system.css" type="text/css" />
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/bizblue/css/template.css" type="text/css" />
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/bizblue/css/<?php echo $this->params->get('width'); ?>.css" type="text/css" />
<?php if($this->params->get('protect')) : ?>
<script language="javascript" type="text/javascript" src="<?php echo $this->baseurl ?>/templates/bizblue/js/jqeury.min.js"></script>
<?php endif; ?>
</head>

-Библиотека Jquery подключена.
« Последнее редактирование: 21.01.2014, 14:10:33 от meiram077 »
*

kreker92

  • Захожу иногда
  • 393
  • 18 / 0
А, я сам уже запутался что тут нужно.
jQuery уже поключен, пардон.
нужно создать файл js.js
+ опечатался, а вы даже не заметили не jqeury, a jquery, но это уже не нужно
вместо jqeury.min.js нужно js.js

Написал же, не заменить, а продублировать и вне уловного оператора if
Все вопросы и предложения на почту.
*

meiram077

  • Захожу иногда
  • 225
  • 0 / 0
Как это "продублировать"? Скопировать и под ним же вставить?
И как понять "вне уловного оператора if"?
Не обижайся, просто я немного далековат от этих терминов!
Неужели так тяжело написать в ответе небольшой кусок хотя бы примера кода!

Цитировать
+ опечатался, а вы даже не заметили не jqeury, a jquery, но это уже не нужно
вместо jqeury.min.js нужно js.js
Название файла оно и в африке название, да хоть djukveri. Главное содержание.
*

kreker92

  • Захожу иногда
  • 393
  • 18 / 0
вместо
Код: php
<jdoc:include type="head" />
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/system/css/general.css" type="text/css" />
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/system/css/system.css" type="text/css" />
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/bizblue/css/template.css" type="text/css" />
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/bizblue/css/<?php echo $this->params->get('width'); ?>.css" type="text/css" />
<?php if($this->params->get('protect')) : ?>
<script language="javascript" type="text/javascript" src="<?php echo $this->baseurl ?>/templates/bizblue/protect.js"></script>
<?php endif; ?>

вот это
Код: php
<jdoc:include type="head" />
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/system/css/general.css" type="text/css" />
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/system/css/system.css" type="text/css" />
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/bizblue/css/template.css" type="text/css" />
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/bizblue/css/<?php echo $this->params->get('width'); ?>.css" type="text/css" />
<script language="javascript" type="text/javascript" src="<?php echo $this->baseurl ?>/templates/bizblue/js/js.js"></script>
<?php if($this->params->get('protect')) : ?>
<script language="javascript" type="text/javascript" src="<?php echo $this->baseurl ?>/templates/bizblue/protect.js"></script>

<?php endif; ?>
Все вопросы и предложения на почту.
*

meiram077

  • Захожу иногда
  • 225
  • 0 / 0
Хоть убейся не работает!  :(
*

meiram077

  • Захожу иногда
  • 225
  • 0 / 0
Ну сейчас все в точности по твоей инструкции.
Папка js есть, файл тоже с названием js и расширением js.
index.php подправил как ты написал.

Может всетаки здесь что-то не то
Код
$( document ).ready(function() {
if (!$('table.adsmanager_table td').text().length) {
$('table.adsmanager_table td').text('-');
}
});
*

meiram077

  • Захожу иногда
  • 225
  • 0 / 0
Мне кажется здесь изначально что-то не то!
Ведь стили таблицы находятся вообще не там. И они никак не касаются шаблона.
localhost\www\САЙТ\components\com_adsmanager\css
*

kreker92

  • Захожу иногда
  • 393
  • 18 / 0
без разницы где они находятся.
Все вопросы и предложения на почту.
Чтобы оставить сообщение,
Вам необходимо Войти или Зарегистрироваться
 

AdsManager 3.0.3 и вставка видео в объявление

Автор Tori777

Ответов: 1
Просмотров: 11807
Последний ответ 26.10.2018, 18:07:45
от avtomastersu
Как добавить поле id объявления

Автор Den85

Ответов: 9
Просмотров: 1551
Последний ответ 11.11.2017, 15:18:48
от Den85
Поле в AdsManager

Автор voras

Ответов: 0
Просмотров: 16213
Последний ответ 30.09.2017, 18:09:39
от voras
Поле в виде таблицы

Автор efimov777

Ответов: 3
Просмотров: 1028
Последний ответ 23.06.2017, 15:04:06
от efimov777
Как добавить новое поле в отображение в кратком режиме?

Автор tas777

Ответов: 3
Просмотров: 1975
Последний ответ 17.05.2017, 18:37:09
от Mick_20