How to hide location of image in django?

2024/10/4 20:54:07

models.py

class UserInfo(models.Model):UID = models.CharField(max_length=50, primary_key=True, default=datetime.now().strftime("%d%y%H%S%m%M"))  # default=fullname = models.CharField(max_length=50)mobile = models.CharField(max_length=15)address = models.CharField(max_length=150)city = models.CharField(max_length=30)state = models.ForeignKey(State, blank=False)pincode = models.CharField(max_length=12)occupation = models.CharField(max_length=30, choices=MY_CHOICES)image = models.FileField(upload_to='images/', blank=True, )

Forms.py

class ProfileUpdate(forms.ModelForm):    class Meta:model = UserInfofields = ('image', 'fullname', 'mobile', 'occupation', 'address', 'city', 'state', 'pincode')

Views.py

def user_settings(request):email = request.session['email']instance = get_object_or_404(UserInfo, email=email)form = ProfileUpdate(instance=instance)return render(request, 'files/profileSettings.html', {'profileupdate': form, })

Html

 <div class="input-field col l7">{{ profileupdate.image }}</div>

My problem is that when I used above html tag for getting choose file for image.this field also shows the path of that file that is already exist.Because I used instance in view that automatic show user value.So I want to hide that location of image.I don't know what I search on google.

Answer

Using image = forms.ImageField(widget=forms.FileInput,) in forms

class ProfileUpdate(forms.ModelForm):image = forms.ImageField(widget=forms.FileInput,)class Meta:model = UserInfofields = ('image', 'fullname', 'mobile', 'occupation', 'address', 'city', 'state', 'pincode')
https://en.xdnf.cn/q/119192.html

Related Q&A

Extracting data from multiple files with python

Im trying to extract data from a directory with 12 .txt files. Each file contains 3 columns of data (X,Y,Z) that i want to extract. I want to collect all the data in one df(InforDF), but so far i only …

Python: Checking if string follows wikipedia link format

If I have a string named link, how would I go about checking to see if it follows the same format as a wikipedia URL? To clarify, wikipedia URLs (in this case) always begin with en.wikipedia.org/wiki/…

Create dictionary comprehension from list with condition syntax

Id like to create a dictionary using dictionary comprehension syntax.Note that list l contains tuples of strings and tuples with 1st element always a time stamp.This works:d = {} for entry in l:if entr…

How to find next empty cell on a specific column and write to it?

I want to find the next empty cell in a specific column and write to values that cell. Ive tried it using following method: for row in sheet[A{}:A{}.format(sheet.min_row,sheet.max_row)]:if row is None:…

How can i pass data from template in Django to Javascript in this specific case

I am using Google map api and i am trying to pass the data (longitude and latitude) to the template then use the data in the javascript to show a specific location.location.html{% for venue in propert…

Python Highscores w/ text file

i am currently working on a text based game, and have run into a problem trying to make my last function, highscore. My problem is this, i would like to make the function save my top five scores and sa…

Do any one know about this Error in python? how can I resolve this?

I am plotting the data with MapBoxGl Python Library on maps, here is my code which is taking the latitude, longitude and points from the Pandas DataFrame and trying to make the geojson, here is the cod…

Pandas: Count Higher Ranks For Current Experiment Participants In Later Experiments (Part 1)

Learning Experiments In a series of learning experiments, I would like to count the number of participants in each experiment that improved their performance in subsequent experiments (Rank 1 is highes…

Pass variables into and out of exec [closed for not being clear. Modified and reuploaded] [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.Want to improve this question? Add details and clarify the problem by editing this post.Closed 3 years ago.Improve…

List Object Not Callable, Syntax Error for Text-Based RPG

Im having issues (still) with generating a random object, in this case a random herb found by foraging. Heres the code for the function:def collectPlants(self):if self.state == normal:print"%s spe…