Skip to content

Commit

Permalink
Fix titles
Browse files Browse the repository at this point in the history
  • Loading branch information
cpina committed Sep 9, 2020
1 parent 69466cf commit 58695af
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ <h1>List of datapackages for {{ collaborator.full_name }}</h1>
<td data-sort="{{ schema.modified_on|date:"Y-m-d H:i:s" }}">{{ schema.modified_on }}</td>
<td>
<a href="{% url 'datapackage-detail' uuid=schema.uuid %}" class="btn btn-primary btn-sm">View</a>
<a href="{% url 'datapackage-ui' %}?load={{ schema.uuid }}" class="btn btn-primary btn-sm">Edit</a>
</td>
</tr>
{% endfor %}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{% extends 'management/_base_with_sidebar.html' %}

{% block title %}List of datapackages{% endblock %}
{% block title %}Person detail{% endblock %}
{% block main_contents %}
<h1>Person detail</h1>
<strong>Name:</strong> {{ person.full_name }}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{% extends 'management/_base_with_sidebar.html' %}
{% load static %}

{% block title %}List of datapackages{% endblock %}
{% block title %}List of people{% endblock %}
{% block main_contents %}
<h1>List of people</h1>
<table id="person-table" class="table table-striped table-sm table-hover display">
Expand Down

0 comments on commit 58695af

Please sign in to comment.