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-14 17:40:14 +01:00

18 lines
453 B
HTML

{% extends "base.html" %}
{% block content %}
{% load crispy_forms_tags %}
<!--<div class="container">-->
<!-- 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 %}