This repository has been archived on 2025-09-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Employee-Management-Portal/templates/inputhours.html
2020-11-13 17:13:14 +01:00

25 lines
617 B
HTML

{% extends "base.html" %}
{% block content %}
{% load crispy_forms_tags %}
<div class="container">
<div class="row">
{% if user.is_authenticated %}
Zalogowany: {{ user.username }} &nbsp;
<p><a href="{% url 'login' %}">Wyloguj</a></p> <br>
{% endif %}
</div>
<!-- form to input working hours-->
<div class="row">
<div class="form-hours">
<form method="post">
{% csrf_token %}
{{ form | crispy}}
<button class="btn btn-lg btn-success btn-block" type="submit">Dodaj</button>
</form>
</div>
</div>
</div>
{% endblock %}