Skip to content

Commit

Permalink
Rename project to LwimiLinks
Browse files Browse the repository at this point in the history
  • Loading branch information
friedelwolff committed Sep 13, 2024
1 parent e3db6a2 commit 502c50d
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 8 deletions.
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
**Sadilar Terminology**
**LwimiLinks**

About the project:
This project implements a platform for hosting multilingual terminology, and
enriching data with metadata and links between relevant role players.

"Lwimi" refers to language in the Nguni languages, and "Links" emphasises the
goal of linking relevant pieces of information.

The software is implemented in Python on the Django framework.

---

Expand Down
4 changes: 2 additions & 2 deletions app/app/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@

from . import views

admin.site.index_title = _("SADiLaR Administration")
admin.site.site_title = _("SADiLaR Site Admin Portal")
admin.site.index_title = _("Site administration")
admin.site.site_title = _("LwimiLinks administration ")

urlpatterns = [
path("admin/", admin.site.urls),
Expand Down
2 changes: 1 addition & 1 deletion app/templates/admin/base_site.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
{% block branding %}
<h1 class="header-title">
<a href="{% url 'home' %}">
<img src="{% static 'img/sadilar.png' %}" class="main-logo" alt="{% trans 'SADiLaR' %}">
<img src="{% static 'img/sadilar.png' %}" class="main-logo" alt="{% trans 'LwimiLinks' %}">
</a>
</h1>
{% if user.is_anonymous %}
Expand Down
2 changes: 1 addition & 1 deletion app/templates/app/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

{% block content %}
{% spaceless %}
<h1 id="main-heading" class="visually-hidden">{% trans "Home page" %}</h1>
<h1 id="main-heading" class="visually-hidden">{% trans "LwimiLinks" %}</h1>
<section class="m-3 card">
<div class="card-body limit-text-width">
<h2 class="fs-3 card-title">{% trans "Welcome" %}</h2>
Expand Down
2 changes: 1 addition & 1 deletion app/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>{% block title %}{% trans "SADiLaR" %}{% endblock %}</title>
<title>{% block title %}{% trans "LwimiLinks" %}{% endblock %}</title>
<meta name="description" content="{% block description %}{% trans 'Terminology and other language resources' %}{% endblock %}">
<meta name="keywords" content="{% block keywords %}{% trans 'language, terminology' %}{% endblock %}">
<meta name="viewport" content="width=device-width, initial-scale=1">
Expand Down
2 changes: 1 addition & 1 deletion app/templates/base_htmx.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
{% spaceless %}
<html lang="en">{# Required for HTMX title swapping to work #}
<head>
<title>{% block title %}{% trans "SADiLaR" %}{% endblock %}</title></head>
<title>{% block title %}{% trans "LwimiLinks" %}{% endblock %}</title>
</head>

{% comment %}
Expand Down

0 comments on commit 502c50d

Please sign in to comment.