Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.tpl « templates « Feedback « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 02f553c17710710375b15f7ba017abeae025ed9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{literal}
<script type="text/javascript">
$(function() {
	$('#feedback-contact').click(function() {
		$('#feedback-faq').hide();
		$('#feedback-form').show();
		return false;
	});

	$('#feedback-home').click(function() {
		$('#feedback-form').hide();
		$('#feedback-faq').show();
		return false;
	});

	$('#feedback-form-submit').click(function() {
		var feedback = $('#feedback-form form');
		$('#feedback-form').hide();
		$.post(feedback.attr('action'), feedback.serialize(), function (data) {
			$('#feedback-sent').show().html(data);
		});
		return false;
	});
});
</script>
{/literal}

  <div id="feedback-faq">
    <p><strong>{'Feedback_DoYouHaveBugReportOrFeatureRequest'|translate}</strong></p>
    <p>» {'Feedback_ViewAnswersToFAQ'|translate:"<a target='_blank' href='misc/redirectToUrl.php?url=http://piwik.org/faq/'>":"</a>"}.</p>
    <ul>
      <li>{'Feedback_WhyAreMyVisitsNoTracked'|translate}</li>
      <li>{'Feedback_HowToExclude'|translate}</li>
      <li>{'Feedback_WhyWrongCountry'|translate}</li>
      <li>{'Feedback_HowToAnonymizeIP'|translate}</li>
    </ul>
    <p>» {'Feedback_VisitTheForums'|translate:"<a target='_blank' href='misc/redirectToUrl.php?url=http://forum.piwik.org/'>":"</a>"}.</p>
    <p>» {'Feedback_LearnWaysToParticipate'|translate:"<a target='_blank' href='misc/redirectToUrl.php?url=http://piwik.org/contribute/'>":"</a>"}.</p>
    <br />
    <p><strong>{'Feedback_SpecialRequest'|translate}</strong></p>
    <p>»  <a target='_blank' href="#" id="feedback-contact">{'Feedback_ContactThePiwikTeam'|translate}</a></p>
  </div>
  <div id="feedback-form" style="display:none;">
    <form method="post" action="index.php?module=Feedback&action=sendFeedback">
      <p><strong>{'Feedback_IWantTo'|translate}</strong>
        <select name="category">
          <option value="share">{'Feedback_CategoryShareStory'|translate}</option>
          <option value="sponsor">{'Feedback_CategorySponsor'|translate}</option>
          <option value="hire">{'Feedback_CategoryHire'|translate}</option>
          <option value="security">{'Feedback_CategorySecurity'|translate}</option>
        </select>
      </p>
      <p><strong>{'Feedback_MyEmailAddress'|translate}</strong><br />
        <input type="text" name="email" size="59" />
        <input type="hidden" name="nonce" value="{$nonce}" /></p>
      <p><strong>{'Feedback_MyMessage'|translate}</strong> {'Feedback_DetailsPlease'|translate}<br />
        <textarea name="body" cols="57" rows="10"></textarea></p>
      <p><input id="feedback-form-submit" type="submit" value="{'Feedback_SendFeedback'|translate}" /></p>
      <p><a href="#" id="feedback-home"><img src="plugins/Feedback/images/go-previous.png" border="0" title="{'General_Previous'|translate}" alt="[{'General_Previous'|translate}]" /></a></p>
    </form>
  </div>
  <div id="feedback-sent" style="display:none;">
  </div>