Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions conditional/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@ def database_processor(
from .blueprints.cache_management import cache_bp
from .blueprints.co_op import co_op_bp
from .blueprints.logs import log_bp
from .blueprints.packet import packet_bp

app.register_blueprint(dashboard_bp)
app.register_blueprint(attendance_bp)
Expand All @@ -142,6 +143,7 @@ def database_processor(
app.register_blueprint(cache_bp)
app.register_blueprint(co_op_bp)
app.register_blueprint(log_bp)
app.register_blueprint(packet_bp)

from .util.ldap import ldap_get_member

Expand Down
2 changes: 2 additions & 0 deletions conditional/templates/nav.html
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@
</ul>
</li>

<li><a href="/packet"><span class="glyphicon glyphicon-home"></span> Packet</a></li>

{% if is_eboard or is_rtp%}
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false"><span class="glyphicon glyphicon-wrench"></span> Admin<span class="caret"></span></a>
Expand Down