-
Notifications
You must be signed in to change notification settings - Fork 12
Added GitHub contribution link in the header #54
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
{%load commitfest%} | ||
<!DOCTYPE html> | ||
<html> | ||
|
||
<head> | ||
<title>{{title|default:'Commitfest' }}</title> | ||
<link rel="stylesheet" href="/media/commitfest/css/jquery-ui.css" type="text/css"> | ||
|
@@ -9,8 +10,10 @@ | |
<link rel="stylesheet" href="/media/commitfest/css/commitfest.css?{% static_file_param %}" /> | ||
<link rel="shortcut icon" href="/media/commitfest/favicon.ico" /> | ||
{%block extrahead%}{%endblock%} | ||
{%if rss_alternate%} <link rel="alternate" type="application/rss+xml" title="{{rss_alternate_title}}" href="{{rss_alternate}}" />{%endif%} | ||
{%if rss_alternate%} | ||
<link rel="alternate" type="application/rss+xml" title="{{rss_alternate_title}}" href="{{rss_alternate}}" />{%endif%} | ||
</head> | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. unrelated change |
||
<body> | ||
<div class="container-fluid"> | ||
<ul class="breadcrumb"> | ||
|
@@ -25,12 +28,20 @@ | |
{%endif%} | ||
<li class="pull-right active"> | ||
{%if user.is_authenticated%} | ||
Logged in as {{user}} (<a href="/account/profile/">edit profile</a> | <a href="/account/logout/">log out</a>{%if user.is_staff%} | <a href="/admin/">administration</a>{%endif%}) | ||
Logged in as {{user}} (<a href="/account/profile/">edit profile</a> | <a href="/account/logout/">log out</a>{%if | ||
user.is_staff%} | <a href="/admin/">administration</a>{%endif%}) | ||
Comment on lines
+31
to
+32
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. unrelated change |
||
{%else%} | ||
<a href="/account/login/?next={{request.path}}">Log in</a> | ||
{%endif%} | ||
</li> | ||
{%if header_activity%} <li class="pull-right active"><a href="{{header_activity_link}}">{{header_activity}}</a></li>{%endif%} | ||
<li class="pull-right active"> | ||
<a href="https://github.com/postgres/pgcommitfest" target="_blank" | ||
style="color: white; padding: 8px 12px; background-color: #24292e; border-radius: 5px; text-decoration: none;"> | ||
itschetna marked this conversation as resolved.
Show resolved
Hide resolved
|
||
Contribute on GitHub | ||
</a> | ||
</li> | ||
{%if header_activity%} <li class="pull-right active"><a href="{{header_activity_link}}">{{header_activity}}</a> | ||
</li>{%endif%} | ||
</ul> | ||
|
||
{%if title %} | ||
|
@@ -51,4 +62,5 @@ <h1>{{title}}</h1> | |
<script src="/media/commitfest/js/bootstrap.js"></script> | ||
<script src="/media/commitfest/js/commitfest.js?{% static_file_param %}"></script> | ||
{%block morescript%}{%endblock%} | ||
</html> | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. unrelated change |
||
</html> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unrelated change