Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Fukász Rómeó Ervin
/
cloud
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
A prog2-höz tartozó friss repo anyagok itt elérhetőek:
https://git.iit.bme.hu/
Commit
8fed5420
authored
Feb 05, 2013
by
Őry, Máté
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
one: remove unused main.html
parent
53860571
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
60 deletions
+0
-60
one/templates/main.html
+0
-60
No files found.
one/templates/main.html
deleted
100644 → 0
View file @
53860571
<!DOCTYPE html>
{% load i18n %}
{% get_current_language as lang %}
<html
lang=
"{{lang}}"
>
<head>
<title>
{% block title %}Superman{% endblock %}
</title>
<link
rel=
"icon"
type=
"image/png"
href=
"/static/favicon.png"
/>
<link
rel=
"stylesheet"
href=
"/static/style.css"
/>
{{ form.media }}
{% block js %}{% endblock %}
</head>
<body>
<div
id=
"header"
>
{% block login %}
<div
id=
"loginblock"
><p>
{% if user.is_authenticated %}
{% blocktrans with user.get_profile.name|default:user.username as name %}
Logged in:
<a
href=
"/me/"
>
{{ name }}
</a>
.
{% endblocktrans %}
<a
href=
"/logout/"
>
{% trans "Log out" %}
</a>
.
<a
href=
"{% url project_own %}"
>
{% trans "My projects" %}
</a>
.
{% if user.is_staff %}
<a
href=
"/admin/"
>
Admin
</a>
.
{% endif %}
{% else %}
<a
href=
"/secure/login/"
>
{% trans "EduID login" %}
</a>
.
{% endif %}
{% if lang == 'hu' %}
<a
href=
"/language/en-US/"
>
In English
</a>
.
{% else %}
<a
href=
"/language/hu/"
>
Magyarul
</a>
.
{% if autolang %}
<p
style=
"position: absolute; top: 40px; right: 1em;"
class=
"triangle-border top"
>
Böngészője kifejezetten angol tartalmat kért.
<br/>
A
<a
href=
"/language/hu/"
>
magyar változat
</a>
részletesebb és frissebb!
</p>
{% endif %}
{% endif %}
</p>
</div>
{% endblock %}
{% block header %}
{% block header_title %}
<h1><a
href=
"/"
>
{% trans "BME HPC Cluster" %}
</a></h1>
{% endblock %}
{% endblock %}
</div>
{% block messages %}
{% if messages %}
<ul
class=
"messagelist"
>
{% for message in messages %}
<li
{%
if
message
.
tags
%}
class=
"{{ message.tags }}"
{%
endif
%}
>
{{ message }}
</li>
{% endfor %}
</ul>
{% endif %}
{% endblock messages %}
<div
id=
"content"
>
{% block content %}{% endblock %}
</div>
</body>
</html>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment