Skip to content

Instantly share code, notes, and snippets.

@hcosta
Created March 19, 2018 15:54
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save hcosta/456df0769f153a2458e711d3f78b75a2 to your computer and use it in GitHub Desktop.
Save hcosta/456df0769f153a2458e711d3f78b75a2 to your computer and use it in GitHub Desktop.
Versión 1
{% 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 %}
@hcosta
Copy link
Author

hcosta commented Mar 19, 2018

Este es un template de mi curso de Django 2.

@GustavoPMex
Copy link

Muchas Gracias

@gustavopalaciosTecno
Copy link

Eres un genio ! gracias

@viktokito
Copy link

Buenísima

@hachiman2002
Copy link

thanks!!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment