summaryrefslogtreecommitdiffstats
path: root/templates/mediawiki/thanks_for_joining.html
blob: 9695ba05a0190e67fb995e9141cedf88eb35e155 (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
64
65
66
67
68
69
70
71
72
73
74
75
76
{% spaceless %}
{% load smart_if %}
{% with wiki_user.user_name as user_name %}
<script type="text/javascript">
$wgUserName = '{{user_name}}';
$(document).ready(function(){
$('#p-personal div').html('\
<ul>\
<li id="pt-0"><a href="/wiki/index.php?title=User:{{user_name}}" class="new">{{user_name}}</a></li>\
<li id="pt-1"><a href="/wiki/index.php?title=UserWiki:{{user_name}}" class="new">my page</a></li>\
<li id="pt-mytalk"><a href="/wiki/index.php?title=User_talk:{{user_name}}" title="My talk page [n]" accesskey="n" class="new">My talk</a></li>\
<li id="pt-preferences"><a href="/wiki/index.php?title=Special:Preferences" title="My preferences">My preferences</a></li>\
<li id="pt-watchlist"><a href="/wiki/index.php?title=Special:Watchlist" title="The list of pages you\'re monitoring for changes [l]" accesskey="l">My watchlist</a></li>\
<li id="pt-mycontris"><a href="/wiki/index.php?title=Special:Contributions/{{user_name}}" title="List of my contributions [y]" accesskey="y">My contributions</a></li>\
<li id="pt-logout"><a href="/wiki/index.php?title=Special:Userlogout&amp;returnto=Special:UserRegister" title="Log out">Log out</a></li>\
</ul>\
');
});
</script>
{% endwith %}
{% if wiki_user.user_title == 'prof' %}
<script type="text/javascript">
    var documentTitle = 'Professor {{wiki_user.user_last_name}}, Welcome to Wiki!';
</script>
{% else %}
    {% if wiki_user.title == 'dr' %}
    <script type="text/javascript">
        var documentTitle = 'Dr. {{wiki_user.user_last_name}}, Welcome to Wiki!';
    </script>
    {% else %}
    <script type="text/javascript">
        var documentTitle = '{{wiki_user.user_first_name}}, Welcome to Wiki!';
    </script>
    {% endif %}
{% endif %}
<script type="text/javascript">
    $(document).ready( function(){
        document.title = documentTitle;
        $('h1.firstHeading').html(documentTitle);
    });
</script>
{% if wiki_user.user_title == 'prof' %}
<p>Dear Professor {{wiki_user.user_last_name}},
{% else %}
    {% if wiki_user.title == 'dr' %}
    <p>Dear Dr. {{wiki_user.user_last_name}},
    {% else %}
    <p>Dear {{wiki_user.user_first_name}},
    {% endif %}
{% endif %}
thanks joining Wiki!</p>
<p><strong>Could you help our community right now?</strong><br/> 
Please answer some of the questions from our Q&amp;A forum:</p>
<ul>
    {% for q in questions %}
        <li><a href="http://yourwiki.org/question/{{q.id}}/{{q.title|slugify}}">{{q.title}}</a></li>
    {% endfor %}
</ul>
<p>Your answers will be <strong>indispensable</strong>.<br/> 
Please feel free to ask something too! Hopefully you will like this forum and the wiki and invite your coworkers and friends to join.
</p>
<p>Might you consider <strong>sharing some of the digital documentation and pulse sequences</strong> that
perhaps had accumulated in your lab?<br/> It's very easy to upload 
files to the wiki as it is to edit the pages directly.
</p>
<p>Best wishes,<br/>
Wiki Server Admin.
</p>
<p>P.S. An email with the confirmation code has been sent to <strong>{{wiki_user.user_email}}</strong>. 
Please follow the included link to confirm your email address.
{% if wiki_user.user_title == 'prof' %}
<br/>
Also, you are always welcome to <strong>advertise open positions</strong> in your laboratory on the wiki.  </p>
{% endif %}
</p>
{% endspaceless %}