def delete_note(id): functions.delete_note_using_id(id) notes = functions.get_data_using_user_id(session['id']) tags = [] if notes: for note in notes: tags_list = functions.get_tag_using_note_id(note[0]) temp_list = [] if tags_list: for tag in tags_list: temp = functions.get_data_using_tag_id(tag) if temp is not None: temp_list.append(temp[0]) tags.append(', '.join(temp_list)) return render_template('profile.html', delete=True, tags=tags, username=session['username'], notes=notes)
def delete_note(id): ''' App for viewing a specific note ''' functions.delete_note_using_id(id) notes = functions.get_data_using_user_id(session['id']) tags = [] if notes: for i in range(len(notes)): tags_list = functions.get_tag_using_note_id(notes[i][0]) temp_list = [] if tags_list: for j in range(len(tags_list)): temp = functions.get_data_using_tag_id(tags_list[j]) if temp is not None: temp_list.append(temp[0]) tags.append(', '.join(temp_list)) return render_template('profile.html', delete=True, tags=tags, username=session['username'], notes=notes)