Files
Learn-Python-Programming-Th…/ch14/apic/rails/templates/rails/index.html
T
adii1823 0a0ceaf7d7 ch14
2021-10-28 17:41:38 +05:30

27 lines
419 B
HTML

{% extends "rails/base.html" %}
{% block title %}Home{% endblock %}
{% block content %}
<h1>Wecome to our Railways website!</h1>
<p>Please choose which page you wish to visit below.</p>
<p>
<a href="{% url 'stations' %}">Stations</a>
</p>
<p>
<a href="{% url 'users' %}">Users</a>
</p>
<p>
<a href="{% url 'authenticate' %}">Authentication</a>
</p>
{% endblock %}
{% block footer %}{% endblock %}