Posts by devmaster • 75 points
6 posts
-
1
votes1
answer2796
viewsQ: Edit word file . doc in Python
I am developing an application in Pythonand Django and need the user to attach a document file .doc. Done this, in this file, the user will have typed some variables, and I need to replace them with…
-
1
votes0
answers110
viewsQ: Doubt with API in Django and Python
I am developing an application with customer registrations, and my class View to register a client was like this: class AdicionarClienteView(CustomCreateView): form_class = OportunidadeForm…
-
0
votes2
answers308
viewsQ: Python function together with html, how to reconcile?
I have a select: <select class="form-control"> <option value="0" selected>Selecione uma opção</option> <option value="1">1</option> <option…
-
0
votes1
answer65
viewsQ: How to compare my edits to the Github repository on Intellij
In the PHP Storm I have a window version control where appear the modifications I made, selecting, I have an option show diff, so I can review all the changes between what’s in the repository and…
-
2
votes1
answer161
viewsQ: Size of div with scrollbar in menu
.sidebar { -moz-transition: all 0.5s; -o-transition: all 0.5s; -webkit-transition: all 0.5s; transition: all 0.5s; font-family: "Roboto", sans-serif; background: rgba(0, 0, 0, 0.78); width: 250px;…
-
1
votes0
answers57
viewsQ: Django error - 'agenda' is not a Registered namespace
py apps. from __future__ import unicode_literals from django.apps import AppConfig class AgendaConfig(AppConfig): name = 'agenda' py. from django.conf.urls import url from . import views from…