Questions tagged as 'django-templates'

1
answer

Listing existing objects and search results in Django

I have the model LodgingOffer with its respective Manager. About I want to do some searches, for which I am using solr and haystack LodgingOfferManager has the active function () to retrieve the active objects of...
asked by 19.01.2018 / 04:47
0
answers

System of Templates django

Good morning before all my greetings and thanks for your cooperation. I have the following question, how can I create a cumulative variable in a django template?     
asked by 29.10.2018 / 15:10
2
answers

Format Django numeric fields in template

I receive in my templates some numerical data from a view, for example a salary for this practical case 100,000: <td>{{ role.salary }}</td> But in the tenplate he shows it to me with x decimals:    100000,33333333 How can...
asked by 06.02.2018 / 20:54
1
answer

How to display a menu only for users of a group in Django?

I'm doing a project with django and I have the following query in the admin of django I created the group "Volunteer", to which I gave permissions so you can manage dogs (create, modify, delete) Well now in the template, I have a button...
asked by 27.11.2018 / 18:41
1
answer

Modify template name Django

I am generating a view to search for products and I want to modify it to also search for users when the name starts with '@'. Right now I have this view: class BusquedaView(FilterView): model = Producto filterset_class = BusquedaFil...
asked by 16.03.2018 / 17:16
1
answer

Change attributes of html tags from a template that inherits the content from a base.html file

I have a template base.html of which the rest of my templates expand it by means of the label extends , an example of the code of the file base.html is the following: {% load static %} <!DOCTYPE html> <html> <...
asked by 26.02.2018 / 20:45
1
answer

Django - templates do not read files in the "STATIC" folder

I have tried all the solutions that have commented, but I can not solve it. I downloaded the template ONETECH in colorlib . Copy the files of css , js e img in the folder STATIC located in the same dire...
asked by 31.12.2018 / 05:12
0
answers

Error with {% trans%} in django template

I have a django template that I want to translate a value that is variable, because it is inside a for. The line is as follows: {{item.title}} I want to translate what is inside that variable of the template. What I did was {{{% trans 'ite...
asked by 22.08.2018 / 10:12