2020-05-13 15:54:40 +02:00
|
|
|
{% extends 'base.html' %} <!-- Add this for inheritance -->
|
|
|
|
{% load i18n %}
|
|
|
|
|
|
|
|
{% block title %}{% trans "Welcome to the RUG Template page" %}{% endblock %}
|
|
|
|
{% block pagetitle %}{% trans "Welcome to the RUG Template page" %}{% endblock %}
|
|
|
|
{% block content %}
|
2020-05-14 15:20:19 +02:00
|
|
|
<p><strong>{% trans "Simple RUG Template" %}</strong></p>
|
2020-05-13 15:54:40 +02:00
|
|
|
<p>{% trans "Some more text" %}</p>
|
|
|
|
{% endblock %}
|