Created
March 19, 2018 15:54
-
-
Save hcosta/456df0769f153a2458e711d3f78b75a2 to your computer and use it in GitHub Desktop.
Versión 1
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
{% extends 'core/base.html' %} | |
{% load static %} | |
{% block title %}Crear página{% endblock %} | |
{% block content %} | |
{% include 'pages/includes/pages_menu.html'%} | |
<main role="main"> | |
<div class="container"> | |
<div class="row mt-3"> | |
<div class="col-md-9 mx-auto"> | |
<div> | |
<form action="" method="post">{% csrf_token %} | |
<table> | |
{{ form.as_table }} | |
</table> | |
<br> | |
<input type="submit" value="Crear página" /> | |
</form> | |
</div> | |
</div> | |
</div> | |
</div> | |
</main> | |
{% endblock %} |
Muchas Gracias
Eres un genio ! gracias
Buenísima
thanks!!
Muchas gracias
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Este es un template de mi curso de Django 2.