This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| Copyright (C) 2024 promto-c | |
| Permission Notice: | |
| - You are free to use, copy, modify, and distribute this software for any purpose. | |
| - No restrictions are imposed on the use of this software. | |
| - You do not need to give credit or include this notice in your work. | |
| - Use at your own risk. | |
| - This software is provided "AS IS" without any warranty, either expressed or implied. | |
| """ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from math import ceil | |
| class Pagination: | |
| def __init__(self, items, page, per_page, total_items): | |
| self.items = items | |
| self.page = page | |
| self.total_items = total_items | |
| self.per_page = per_page | |
| self.num_pages = int(ceil(total_items / float(per_page))) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ------------------------------- | |
| The code for the contact form | |
| ------------------------------- | |
| <div id='contact-box' class="group"> | |
| <div class="span6 clear"> | |
| <form action="/" method="post" class="well"> | |
| <label for="name">Your Name:</label> | |
| <input type="text" name="name" class="span4" placeholder="John Smith..."> | |
| <label for="email">Your email address:</label> |