Socialify

Folder ..

Viewing sidebar.html
430 lines (418 loc) • 14.2 KB

  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
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
{% load static %}
{% comment %} Login Area {% endcomment %}
{% if not user.is_authenticated %}
<link rel="stylesheet" href="{% static 'css/login-area.css' %}">
{% for message in messages %}
{% if 'loginError' in message.tags %}
        {% if message.message == "ENVERR" and request.GET.username %}
            <form method="post" action="{% url 'users:sendverificationemail' %}" style="position: relative;">
                {% csrf_token %}
                <input type="hidden" name="username" value="{{ request.GET.username }}">
                <input type="submit" value="" style="    display: block;
                width: 57px;
                height: 12px;
                cursor: pointer;
                border-radius: 2px;
                position: absolute;
                top: 9px;
                left: -87px;
                background: transparent;
                z-index: 3;">
            </form>
        {% endif %}
        <div id="login-error">
            <div class="messageBox {{message.message}}"></div>
        </div>
        {% endif %}
    {% endfor %}
<div id="login-area">
    <form method="post" action="{% url 'users:login' %}" id="login-form">
        <input type="hidden" name="csrfmiddlewaretoken" value="{{ csrf_token }}">
        <input type="text" id="username" name="username" placeholder="Username" autocomplete="off" value="{{ request.GET.username }}">
        <input type="password" id="password" name="password" placeholder="Password" autocomplete="off">
        <input type="hidden" name="next" value="{{ request.path }}">
        <input type="submit" value="">
    </form>
    <a href="{% url 'blog:register' %}" id="register-now-button"></a>
</div>
{% endif %}

{% if user.is_authenticated %}
<div id="user-area" style="position: relative">
    <h2>Hello, {{ user.username }}!</h2>
    <ul>
        <li>
            <span>
                <img src="{% static 'images/site/icons/email.gif' %}" alt="Home" border="0">
            </span>
            <span>
                <a href="{% url 'blog:user_activity' user.username %}">
                    Profile
                </a>
            </span>
        </li>
        <li>
            <span>
                <img src="{% static 'images/site/icons/mouse.gif' %}" alt="Home" border="0">
            </span>
            <span>
                <a href="{% url 'blog:account' %}">
                    Account
                </a>
            </span>
        </li>
        <li>
            <span>
                <img src="{% static 'images/site/icons/key.gif' %}" alt="Home" border="0">
            </span>
            <span>
                <a href="{% url 'users:logout' %}">
                    Logout
                </a>
            </span>
        </li>
    </ul>
</div>
{% endif %}

<div id="navigation-area" class="mtctitem">
    <h2>Links</h2>
    <ul>
        <li>
            <span>
                <img src="{% static 'images/site/icons/news.gif' %}" alt="Home" border="0">
            </span>
            <span>
                <a href="{% url 'blog:home' %}">
                    Home
                </a>
            </span>
        </li>
        <li>
            <span>
                <img src="{% static 'images/site/icons/pencil.gif' %}" alt="Blog" border="0">
            </span>
            <span>
                <a href="{% url 'blog:articles' %}">
                    Weblog
                </a>
            </span>
        </li>
        <li>
            <span>
                <img src="{% static 'images/site/icons/cabinet.gif' %}" alt="Archives" border="0">
            </span>
            <span>
                <a href="{% url 'blog:archives' %}">
                    Archives
                </a>
            </span>
        </li>
        <li>
            <span>
                <img src="{% static 'images/site/icons/books.gif' %}" alt="Categories" border="0">
            </span>
            <span>
                <a href="{% url 'blog:categories' %}">
                    Categories
                </a>
            </span>
        </li>
        <li>
            <span>
                <img src="{% static 'images/site/icons/issues.gif' %}" alt="Tags" border="0">
            </span>
            <span>
                <a href="{% url 'blog:tags' %}">
                    Tags
                </a>
            </span>
        </li>
        <li>
            <span>
                <img src="{% static 'images/site/icons/translate.png' %}" alt="Translate" border="0" style="padding: 2px 0px; height: 20px; width: auto;">
            </span>
            <span>
                <a href="javascript:changeLang('en');" id="tl_ja" style="display: none;" class="notranslate en">English</a>
                <a href="javascript:changeLang('ja');" id="tl_en" style="display: none;" class="notranslate ja">日本語</a>
            </span>
        </li>
        {% comment %} <li>
            <span>
                <img src="{% static 'images/site/icons/setup.gif' %}" alt="Source Code" border="0">
            </span>
            <span>
                <a href="{% url 'dev_status:repo' 'thatcomputerscientist' %}">
                    Source Code
                </a>
            </span>
        </li> {% endcomment %}
    </ul>
</div>

<div id="fake-ad-area" class="mtctitem">
    {% comment %} <h2>Advertisement</h2> {% endcomment %}
    {% load ad %}
        <img src="{{ "big" | ad }}" alt="Advertisement">
</div>

<div id="fun-stuff" class="mtctitem">
    <h2>Good Stuff</h2>
    <ul>
        <li>
            <span>
                <img src="{% static 'images/site/icons/fork.png' %}" alt="Repositories" border="0" style="padding: 2px; height: 20px; width: 20px;">
            </span>
            <span>
                <a href="{% url 'dev_status:home' %}">
                    My Repositories
                </a>
            </span>
        </li>
        <li>
            <span>
                <img src="{% static 'images/site/icons/anistar.gif' %}" alt="Socialify" border="0" style="padding: 2px; height: 20px; width: 20px;">
            </span>
            <span>
                <a href="{% url 'blog:anilist' %}">
                    My Anime List
                </a>
            </span>
        </li>
        <li>
            <span>
                <img src="{% static 'images/site/icons/windows.gif' %}" alt="Socialify" border="0">
            </span>
            <span>
                <a href="{% url 'blog:socialify' %}">
                    Socialify
                </a>
            </span>
        </li>
        {% comment %} <li>
            <span>
                <img src="{% static 'images/site/icons/globe.gif' %}" alt="Mastodon" border="0" style="padding: 2px 5px; height: 20px; width: auto;">
            </span>
            <span>
                <a rel="me" href="https://mastodon.social/@selch">Mastodon</a>
                <img width="11" height="11" src="https://img.icons8.com/glyph-neue/20/d2baff/external-link.png" alt="external-link"/ style="height: 11px; width: 11px; position: relative; top: -1px;">
            </span>
        </li> {% endcomment %}
    </ul>
</div>

<div id="site-spells" class="mtctitem">
    <h2>Site Spells</h2>
    <ul>
        <li>
            {% if request.COOKIES.summonOneko == 'true' %}
                <span>
                    <img src="{% static 'images/site/withdraw_oneko.gif' %}" alt="Oneko" border="0">
                </span>
                <span>
                    <a href="javascript:void(0);" onclick="withdrawOneko();">
                        Withdraw Oneko
                    </a>
                </span>
            {% else %}
                <span>
                    <img src="{% static 'images/site/summon_oneko.gif' %}" alt="Oneko" border="0">
                </span>
                <span>
                    <a href="javascript:void(0);" onclick="summonOneko();">
                        Summon Oneko
                    </a>
                </span>
            {% endif %}
        </li>
        <li>
            <span>
                <img src="{% static 'images/site/patrick-star.gif' %}" alt="Patrick Star" border="0" id="patrick">
            </span>
            <span>
                <a href="javascript:harlemShakeAndBake();">
                    Harlem Shake
                </a>
            </span>
        </li>
        <li>
            <div style="position: fixed; top: 0; left: 0; z-index: 1;">
                <div id="black" style="display: none;" onclick="javascript:handleDVD();">
                    <div id="dvd"></div>
                </div>
            </div>
            <span>
                <img src="{% static 'images/site/dvd.gif' %}" alt="DVD" border="0">
            </span>
            <span>
                <a href="javascript:handleDVD();">
                    DVD SiteSaver
                </a>
            </span>
        </li>
    </ul>
</div>

<div id="archives-area" class="mtctitem">
    <h2>Archives</h2>
    <ul>
        {% for archive in archives %}
        <li>
            <span>
                <img src="{% static 'images/site/icons/cabinet.gif' %}" alt="Archive" border="0">
            </span>
            <span>
                <a href="{% url 'blog:archives' %}/{{ archive | date:"F_Y" }}">
                    {{ archive | date:"F Y" }}
                </a>
            </span>
        </li>
        {% endfor %}
        <li>
            <span>
                <img src="{% static 'images/site/icons/cabinet.gif' %}" alt="Archives" border="0">
            </span>
            <span>
                <a href="{% url 'blog:archives' %}">
                    All Archives...
                </a>
            </span>
        </li>
    </ul>
</div>

<div id="categories-area" class="mtctitem">
    <h2>Categories</h2>
    <ul>
        {% for category in categories %}
        <li>
            <span>
                <img src="{% static 'images/site/icons/books.gif' %}" alt="Archive" border="0">
            </span>
            <span>
                <a href="{% url 'blog:categories' %}/{{ category.slug }}">
                    {{ category }}
                </a>
            </span>
        </li>
        {% endfor %}
        <li>
            <span>
                <img src="{% static 'images/site/icons/books.gif' %}" alt="Categories" border="0">
            </span>
            <span>
                <a href="{% url 'blog:categories' %}">
                    All Categories...
                </a>
            </span>
        </li>
    </ul>
</div>

{% if user.is_superuser %}
<div id="admin-area" class="mtctitem">
    <h2>Admin</h2>
    <ul>
        <li>
            <span>
                <img src="{% static 'images/site/icons/right_hand.gif' %}" alt="Archive" border="0">
            </span>
            <span>
                <a href="{% url 'blog-admin:new-post' %}">
                    Create New Post
                </a>
            </span>
        </li>
        <li>
            <span>
                <img src="{% static 'images/site/icons/right_hand.gif' %}" alt="Archive" border="0">
            </span>
            <span>
                <a href="{% url 'blog-admin:posts' %}">
                    Manage Posts
                </a>
            </span>
        </li>
        <li>
            <span>
                <img src="{% static 'images/site/icons/right_hand.gif' %}" alt="Archive" border="0">
            </span>
            <span>
                <a href="{% url 'blog-admin:comments' %}">
                    Manage Comments
                </a>
            </span>
        </li>
        <li>
            <span>
                <img src="{% static 'images/site/icons/right_hand.gif' %}" alt="Archive" border="0">
            </span>
            <span>
                <a href="{% url 'admin:auth_user_changelist' %}">
                    Manage Users
                </a>
            </span>
        </li>
        <li>
            <span>
                <img src="{% static 'images/site/icons/right_hand.gif' %}" alt="Archive" border="0">
            </span>
            <span>
                <a href="{% url 'admin:blog_category_changelist' %}">
                    Manage Categories
                </a>
            </span>
        </li>
        <li>
            <span>
                <img src="{% static 'images/site/icons/right_hand.gif' %}" alt="Archive" border="0">
            </span>
            <span>
                <a href="{% url 'admin:blog_tag_changelist' %}">
                    Manage Tags
                </a>
            </span>
        </li>
        <li>
            <span>
                <img src="{% static 'images/site/icons/right_hand.gif' %}" alt="Archive" border="0">
            </span>
            <span>
                <a href="{% url 'admin:announcements_announcement_changelist' %}">
                    Manage Announcements
                </a>
            </span>
        </li>
        <li>
            <span>
                <img src="{% static 'images/site/icons/right_hand.gif' %}" alt="Archive" border="0">
            </span>
            <span>
                <a href="{% url 'admin:index' %}">
                    Admin Area
                </a>
            </span>
        </li>
    </ul>
</div>
{% endif %}

{% if anonymous_users or logged_in_users or admin_users %}
<div id="online-users" class="mtctitem">
    <h2>Who's Online?</h2>
    <div>
        <p>In total, there {% if not anonymous_users|add:logged_in_users|add:admin_users == 1%}are{% else %}is{% endif %} {{ anonymous_users|add:logged_in_users|add:admin_users }} user{% if not anonymous_users|add:logged_in_users|add:admin_users == 1%}s{% endif %} online ::</p>
        <ul>
            <li>{{ anonymous_users }} Guest{% if not anonymous_users == 1%}s{% endif %}</li>
            <li>{{ logged_in_users }} Registered User{% if not logged_in_users == 1%}s{% endif %}</li>
            <li>{{ admin_users }} Staff Member{% if not admin_users == 1%}s{% endif %}</li>
        </ul>
        <p>(Based on users active over the past 5 minutes)</p>
    </div>
</div>
{% endif %}

<div style="text-align: center;" id="vcount" class="mtctitem">
    <h2>You are Visitor #</h2>
    <div>
        <span class="vc">0</span>
        <span class="vc">0</span>
        <span class="vc">6</span>
        <span class="vc">9</span>
        <span class="vc">4</span>
        <span class="vc">2</span>
        <span class="vc">0</span>
    </div>
    <p class="mtsbitem"><small>____________________________________<br>This is just a nice random number!</small></p>
</div>

<div id="google_translate_element"></div>