added list images
This commit is contained in:
@@ -37,13 +37,28 @@
|
||||
.inline-form { display: flex; gap: 0.5rem; align-items: center; }
|
||||
.inline-form input { width: 150px; }
|
||||
.empty { text-align: center; padding: 2rem; color: #9ca3af; }
|
||||
nav { display: flex; gap: 1.5rem; align-items: center; }
|
||||
nav a { color: #94a3b8; text-decoration: none; font-size: 0.9rem; padding: 0.25rem 0; border-bottom: 2px solid transparent; }
|
||||
nav a:hover { color: #fff; }
|
||||
nav a.active { color: #fff; border-bottom-color: #2563eb; }
|
||||
.tag { display: inline-block; background: #e0e7ff; color: #3730a3; padding: 0.15rem 0.5rem; border-radius: 4px; font-size: 0.8rem; margin: 0.15rem; font-family: monospace; }
|
||||
code { background: #f3f4f6; padding: 0.15rem 0.4rem; border-radius: 4px; font-size: 0.85rem; }
|
||||
pre { background: #1e293b; color: #e2e8f0; padding: 1rem; border-radius: 6px; overflow-x: auto; font-size: 0.85rem; line-height: 1.6; margin: 0.75rem 0; }
|
||||
pre code { background: none; padding: 0; color: inherit; }
|
||||
.help-step { margin-bottom: 0.5rem; }
|
||||
.help-step strong { color: #374151; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<h1>Docker Registry</h1>
|
||||
{% if session.get('logged_in') %}
|
||||
<a href="{{ url_for('logout') }}">Abmelden</a>
|
||||
<nav>
|
||||
<a href="{{ url_for('users') }}" {% if request.endpoint == 'users' %}class="active"{% endif %}>Benutzer</a>
|
||||
<a href="{{ url_for('images') }}" {% if request.endpoint == 'images' %}class="active"{% endif %}>Images</a>
|
||||
<a href="{{ url_for('help_page') }}" {% if request.endpoint == 'help_page' %}class="active"{% endif %}>Hilfe</a>
|
||||
<a href="{{ url_for('logout') }}">Abmelden</a>
|
||||
</nav>
|
||||
{% endif %}
|
||||
</header>
|
||||
<div class="container">
|
||||
|
||||
Reference in New Issue
Block a user