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: 1 addition & 1 deletion src/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<title>Codabench</title>
<title>{% block title %}Codabench{% endblock %}</title>
<link rel="icon" type="image/ico" href="{% static 'img/favicon.ico' %}"/>

<!-- Vendor -->
Expand Down
3 changes: 3 additions & 0 deletions src/templates/competitions/detail.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
{% extends "base.html" %}

{% block title %}{{ competition.title }} - Codabench{% endblock %}

{% block content %}
<competition-detail competition_pk="{{ object.pk }}" secret_key="{{ secret_key }}"></competition-detail>
{% endblock %}
2 changes: 2 additions & 0 deletions src/templates/competitions/management.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
{% extends "base.html" %}

{% block title %}Benchmark Management - Codabench{% endblock %}

{% block content %}
<competition-management></competition-management>
{% endblock %}
2 changes: 2 additions & 0 deletions src/templates/competitions/public.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
{% extends "base.html" %}

{% block title %}Public Benchmarks and Competitions - Codabench{% endblock %}

{% block content %}
<public-list></public-list>
{% endblock %}
2 changes: 2 additions & 0 deletions src/templates/competitions/upload.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
{% extends "base.html" %}

{% block title %}Benchmark upload - Codabench{% endblock %}

{% block content %}
<competition-upload>
</competition-upload>
Expand Down
2 changes: 2 additions & 0 deletions src/templates/datasets/management.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
{% extends "base.html" %}

{% block title %}Resources - Codabench{% endblock %}

{% block content %}
<div class="sixteen wide column">
<management></management>
Expand Down
1 change: 1 addition & 0 deletions src/templates/profiles/user_edit.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{% extends "base.html" %}
{% load static %}

{% block title %}User Edit - Codabench{% endblock %}

{% block content %}
<profile-edit class="ui container"></profile-edit>
Expand Down
1 change: 1 addition & 0 deletions src/templates/profiles/user_profile.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{% extends "base.html" %}
{% load static %}

{% block title %}{{ user.username }} - Codabench{% endblock %}

{% block content %}
<profile-detail></profile-detail>
Expand Down
2 changes: 2 additions & 0 deletions src/templates/tasks/management.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
{% extends "base.html" %}

{% block title %}Resources - Codabench{% endblock %}

{% block content %}
<div class="sixteen wide column">
<management></management>
Expand Down