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
{% if page.has_other_pages %} | |
<nav aria-label="Page navigation"> | |
<ul class="pagination pg-dark justify-content-center"> | |
{% if page.has_previous %} | |
<li class="page-item"><a class="page-link" href="?page={{ page.previous_page_number }}">«</a></li> | |
{% else %} | |
<li class="page-item disabled"><a class="page-link" href="#"><span>«</span></a></li> | |
{% endif %} | |
{% for i in paginator.page_range %} |
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
#!make | |
include .env | |
export $(shell sed 's/=.*//' .env) | |
help: | |
echo 'run - run django dev server' |
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
wget http://download.virtualbox.org/virtualbox/5.0.6/VBoxGuestAdditions_5.0.6.iso # check version | |
sudo mount VBoxGuestAdditions_5.0.6.iso -o loop /mnt | |
sudo apt-get install build-essential linux-headers-`uname -r` | |
sudo bash /mnt/VBoxLinuxAdditions.run --nox11 | |
sudo adduser $USER vboxsf |