-
Notifications
You must be signed in to change notification settings - Fork 3
/
link.html.jinja2
29 lines (29 loc) · 1.6 KB
/
link.html.jinja2
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
<!-- this file is unused except I had modifications while I was reverting things -->
{% import "bootstrap/wtf.html" as wtf %}
{% extends "base.html.jinja2" %}
{% block navbar %}
<li class="nav-item">
<a class="nav-link" aria-current="page" href="#">Home</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="nbGsDropDown" role="button" data-bs-toggle="dropdown" aria-expanded="false">Game Sync</a>
<ul class="dropdown-menu" aria-labelledby="nbGsDropdown">
<a class="dropdown-item disabled" href="#">{{ _('Dream Land') }}</a>
<a class="dropdown-item disabled" href="#">{{ _('Global Battle Union') }}</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item" href="{{ url_for('savedata') }}">{{ _("Save Data") }}</a> <!-- gs_savdownload is completely different from savedata.download. Be careful! -->
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="nbLoginDropDown" role="button" data-bs-toggle="dropdown" aria-expanded="false">Account</a>
<ul class="dropdown-menu" aria-labelledby="nbGsDropdown">
<a class="dropdown-item" href="{{ url_for('login') }}">{{ _("Sign In") }}</a>
<a class="dropdown-item active" href="#">{{ _("Link Save Data") }}</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item disabled" href="#">{{ _("Trainer Info") }}</a>
</ul>
</li>
{% endblock %}
{% block content %}
{{ wtf.quick_form(form) }}
{% endblock %}