Kahraman Dogan

Results 4 issues of Kahraman Dogan

Bootstrap template has been improved for styled pagination. Filter for xeditable choices for Foreignkey fields with limit_choices_to set on the model level. #252

I have a model field as follows; ```python class Tag(models.Model): TAG_USER_GROUP_NAME = "X_TEAM" def limit_user_selection_to_group_user(group_name): result = dict(groups__name=group_name, is_active=True) return result checked_by = models.ForeignKey( settings.AUTH_USER_MODEL, verbose_name="Checked", limit_choices_to=limit_user_selection_to_group_user(TAG_USER_GROUP_NAME), blank=True, null=True, related_name='tagtracking_tags_checked',...

SS from example app, ![image](https://cloud.githubusercontent.com/assets/8274988/24600564/8c4a6efa-1855-11e7-89d9-995c1008f32c.png)

Hi @tiliv, I really would like to know if there is any possibility to have a validation for xeditable inputs, or any workaround making it possible to use make_xeditable with...