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
| #demas de Ctrl+B, agregamos un atajo de teclado tipo screen (Ctrl+A) | |
| # Para tmux < 1.6: | |
| #set-option -g prefix C-a,C-b | |
| # Para tmux >= 1.6: | |
| #set-option -g prefix C-a | |
| #set-option -g prefix2 C-b | |
| # Si quisieramos reemplazarlo totalmente: | |
| # set-option -g prefix C-a |
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 django.conf.urls import patterns, url | |
| urlpatterns = patterns('{{PROJECT_NAME}}.apps.{{APP_NAME}}.views', | |
| url(r'^$', "{{FUNCTION_NAME}}", name="{{TEMPLATE_NAME}}"), | |
| ) |
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 'Form/form_div_layout.html.twig' %} | |
| {# | |
| Extends from Symfony/Bridge/Twig/Resources/views/Form/form_div_layout.html.twig | |
| Overrides the form_errors block so it no longer uses transchoice (which | |
| was causing a problem). | |
| #} | |
| {% block form_errors %} | |
| {% spaceless %} |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <title>{% block title %}Welcome!{% endblock %}</title> | |
| {% block stylesheets %}{% endblock %} | |
| <link rel="icon" type="image/x-icon" href="{{ asset('favicon.ico') }}" /> | |
| </head> | |
| <body> | |
| {% block body %}<p>Contenido del archivo </p>{% endblock %} |
NewerOlder