Created
April 21, 2020 22:28
-
-
Save icarovirtual/977c2bc21c117f069243360961e3327c to your computer and use it in GitHub Desktop.
This file contains 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Articles</title> | |
</head> | |
<body> | |
<h3>Filter</h3> | |
<form method="get"> | |
{{ form.as_p }} | |
<button type="submit">Filter</button> | |
</form> | |
<h3>Articles</h3> | |
<ul> | |
{% for article in articles %} | |
<li>{{ article.pk }} - {{ article.get_status_display }}</li> | |
{% endfor %} | |
</ul> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment