8 lines
168 B
HTML
8 lines
168 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Future time{% endblock %}
|
|
|
|
{% block content %}
|
|
<p>In {{ offset }} hours, it will be {{ future_time }}.</p>
|
|
{% endblock %}
|